Click to See Complete Forum and Search --> : form dispalys values


Pam
10-07-2003, 06:35 PM
:confused:

could you help me to create a form passing values from a parent form like a dialog box with ok and cancel buttons??

I will appreciate your help!!

thanks

paps
10-07-2003, 07:15 PM
Use the function "InputBox"...heres and example in VBscript....

Dim Input
Input = InputBox("Enter your name")
MsgBox ("You entered: " & Input)


This displays a Ok-Cancel msg box..with one field for the user to enter the name....the InputBox returns the value and assigns to the variable Input...

HTH :)