Display the result of an sql string in a text box

noccy

Registered User.
Local time
Today, 09:33
Joined
Aug 19, 2003
Messages
67
Hello

How can I diaplay the result of an SQL-string in a txt box

let's say my SQL is SELECT Adress FROM People WHERE Name = "Smith"

and my txt box is txtAdress

suggestions?
 
An SQL statement doesn't return a result - it returns a recordset.

You probably want to look up the domain aggregate functions most notable, DLookup() in the help files.
 
tnx solved it =)
 

Users who are viewing this thread

Back
Top Bottom