Binding a query to a textbox control

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

Guest

Dear all,

Bit new to this, but how do you programatically bound the result of a query,
in this case a scaler to a textbox control when the form loads up?

Say
form name is frmmenu, control name is textboxincomplete, and query name is
incompletereturn

Your help will be most appreciated.

Pogas
 
In the control source of the field you can write

=DLookup("[FieldNameInTheQuery]","incompletereturn")
 
Back
Top