Input Dialog Box?

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

Hi,

I seem to recall that MS Access has a built in function that
displays a small dialog box that allows the user to input a text string
- sort of like MsgBox, except that it allows input.

Can anyone remember the name of this function or point me in the
right direction?


Thanks
Joe
 
Hi,

I seem to recall that MS Access has a built in function that
displays a small dialog box that allows the user to input a text string
- sort of like MsgBox, except that it allows input.

Can anyone remember the name of this function or point me in the
right direction?

Thanks
Joe

Dim intX as Integer
intX = InputBox("How many copies?","Print copies.")

Look it up in VBA help for all of the arguments.
By the way, as you can see, the value does not have to be a text
string.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top