vote up 0 vote down star

Hi I need to create a query in MSAccess 2003 through code (a.k.a. VB) -- how can I accomplish this?

flag

56% accept rate

1 Answer

vote up 2 vote down check

A vague answer for a vague question :)

strSQL="SELECT * FROM tblT WHERE ID =" & Forms!Form1!txtID 

Set qdf=CurrentDB.CreateQueryDef("NewQuery",strSQL)
DoCmd.OpenQuery qdf.Name
link|flag
Ugh I've been trying things similar to this for the past 3 hours :( Thanks a bunch – Andrew G. Johnson Dec 24 '08 at 0:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.