allow users to change variables

  • Thread starter Thread starter Tim
  • Start date Start date
T

Tim

What's the best way to allow users to change a variable in
a form's module?

For example, at any give time, I want them to be able to
change the value of "Date" to a date of their choice
without having to go into the code view and change it there.

thanks,

Tim
 
What's the best way to allow users to change a variable in
a form's module?

For example, at any give time, I want them to be able to
change the value of "Date" to a date of their choice
without having to go into the code view and change it there.

thanks,

Tim

First off, Date is a builting function so you don't really want to
have a variable with that name.

Having said that, you could use an unbound textbox to store the value.
The user just types in what they want and you can reference it
anywhere. Of course you want some validation for their entry.

- Jim
 
Back
Top