I all, i must to put a value in a textbox that's the results of a query
"select" in the code..
How can i do
Thanks
Ron2005 - 05 Apr 2006 13:54 GMT
IF the results of the query is a single record which contains the
information you wanted:
In the OnCurrent event of the form
me.txtboxname = dLookup ("[XXXXX]", "MyQuery")
where XXXXXX is the field name that contains the desired information
and
MyQuery is the name of the query that returned the desired
information.
Ron