Passing Parameters into a text box in a Form

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

Guest

Hello
Wondering if this is possible...how can I pass a couple of date parameters into a couple of text boxes on a form

I have 2 date parameters (start and end) that will request the user for input
The result would be a listing of events between the specified date range, but I also want the date ranges to be shown in the form as well

Thanks
 
If you are using the parameter values such as Between [Enter Start Date] AND
[Enter End Date] just pass these statements to a textbox's control source
area by typing =[Enter Start Date] & " " & [Enter End Date]. You can also
make separate textboxes.

Angela said:
Hello,
Wondering if this is possible...how can I pass a couple of date parameters
into a couple of text boxes on a form.
I have 2 date parameters (start and end) that will request the user for input.
The result would be a listing of events between the specified date range,
but I also want the date ranges to be shown in the form as well.
 
How about if the parameters were used in a query, how can I pass them into the text boxes
Is it the same way

Thank you

----- GVaught wrote: ----

If you are using the parameter values such as Between [Enter Start Date] AN
[Enter End Date] just pass these statements to a textbox's control sourc
area by typing =[Enter Start Date] & " " & [Enter End Date]. You can als
make separate textboxes

Angela said:
Hello
Wondering if this is possible...how can I pass a couple of date parameter
into a couple of text boxes on a form
input
The result would be a listing of events between the specified date range
but I also want the date ranges to be shown in the form as well
 
Back
Top