D
Diego Lotti
Hello,
I want to migrate all my db into an adp project connected to SQL server
2000.
I'm wondering what is the best way to retrieve values from a table and use
them in my vba code.
I'm looking for the equivalent of the dlookup function.
I know I can use dlookup but I read that it produces "weird" results. Is
this true?
For example:
I want to get the value of the "Checked" field of a table based on the ID.
in normal mde I would use:
blChecked=NZ(Dlookup("Checked","Table1","ID=xxxx"),False)
How could I get that value now? It's normal to use a recordset even for 1
field?
Thank you very much
I want to migrate all my db into an adp project connected to SQL server
2000.
I'm wondering what is the best way to retrieve values from a table and use
them in my vba code.
I'm looking for the equivalent of the dlookup function.
I know I can use dlookup but I read that it produces "weird" results. Is
this true?
For example:
I want to get the value of the "Checked" field of a table based on the ID.
in normal mde I would use:
blChecked=NZ(Dlookup("Checked","Table1","ID=xxxx"),False)
How could I get that value now? It's normal to use a recordset even for 1
field?
Thank you very much