how to queiry and connect to a GUI???

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hello, I am very new to this. I have made a GUI with a "start date" (textbox)and "End date" (textbox) that a user can typed in. How do i connect it to the report i have made with the wizarrd??

report = report
databse = tbl
column (in table) = dat

how would the quiery look like and where would the code go?????? HELP!!!!!!!!!
and how is the page made (the quiery's ouput)????
 
Luis:

In the query, there is a row that in English is called "Condition". The
condition could be something like <5 or Not Is Null, etc. To link your
query to the form you've created, you enter as a condition for your date
field something like this:

Between Forms!YourFormName![start date] and Forms!YourFormName![End Date]

That's all there is to it.
 
Back
Top