Binding a query to a textbox control

P

Pogas

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
 
O

Ofer

In the control source of the field you can write

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