msgbox question

Wulf13

Registered User.
Local time
Today, 01:34
Joined
Jul 6, 2004
Messages
85
Is it possible to use a msgbox to fill in a control on a form?
 
When a person selects a value from a combo box, it prompts for a date that goes in a text box on the form. I think I need to use an input box though.
 
instead of a msgbox use

Code:
Dim info as string
info = inputbox ("blah blah")
 

Users who are viewing this thread

Back
Top Bottom