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)
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)