office assistant inputbox

C

Charlie

The code below gets info from the user via the inputbox. Is there a way to
get a string from the user via the office assistant? I used the assistant to
show info, button choices, but not to get a variable string from the user.
(like when you type in a question in help). There must be code for this???
thanks,
ck


Dim Message, Title, Default, MyValue
Message = "Enter a value between 1 and 3" ' Set prompt.
Title = "InputBox Demo" ' Set title.
Default = "1" ' Set default.
' Display message, title, and default value.
MyValue = InputBox(Message, Title, Default)
 

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

Top