(Un)Bound & Focus

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When scanning through questions posted, I run across words like "unbound",
"bound", "focus", "lost focus".

What do these words/phrases mean and how are they applied?

Thanks,
Les
 
Binding is the way an object in Access relates to underlying data. A bound
form or a bound control (textbox, combobox, etc.) is tied to a specific table
or query in the database. If a control is bound, it automatically reflects
the values in a specific field of a specific record in a table. Also, changes
to the data in the control will automatically update the value in the table.
Unbound controls have no such connection. In unbound controls, displaying
data or updating datas must be done through some sort of macro or code.

Focus simply refers to which form or control has the cursor. When you click
in a textbox, it has the focus. When you ckick another textbox, the first one
loses focus and the new one gets focus.

Barry
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top