Use data from form for quary and display result on same form

  • Thread starter Thread starter Bosque
  • Start date Start date
B

Bosque

From some radio buttons on a form i generate a quary using:
Set qrynew = CurrentDb.CreateQueryDef("qryConditionSource", StrSQL)
This changes the data that textboxes in the form refrence. How do I get the
textboxes to update their contence with the new quary data from VBA?
 
Bosque,

I am not sure I understand the process you are using here.

Perhaps you could try this instead:
Me.RecordSource = strSQL
 
Back
Top