Hello all.
Can I open a "Enter Parameter Value" dialog box to capture and use the input without running a query?
something like
or
I need a short string input from the users at application load, and I'd like to use the "Enter Parameter Value" dialog.
I'm about to build a workaround that will invoke a SQL statement to save the entry to a temp table, but it'd be nice if I could just call up that dialog box and store the entry as a VBA variable.
Thanks
Can I open a "Enter Parameter Value" dialog box to capture and use the input without running a query?
something like
Code:
ParaBox ("Enter the Hostname", vbEntParameterVal, "Hostname Required")
Code:
Set pDialog = Application.ParaValueDialog(mso?????)
I need a short string input from the users at application load, and I'd like to use the "Enter Parameter Value" dialog.
I'm about to build a workaround that will invoke a SQL statement to save the entry to a temp table, but it'd be nice if I could just call up that dialog box and store the entry as a VBA variable.
Thanks