form dispalys values

admin

Administrator
Staff member
:confused: <br />
<br />
could you help me to create a form passing values from a parent form like a dialog box with ok and cancel buttons??<br />
<br />
I will appreciate your help!!<br />
<br />
thanks<!--content-->Use the function "InputBox"...heres and example in VBscript....<br />
<br />
Dim Input<br />
Input = InputBox("Enter your name") <br />
MsgBox ("You entered: " & Input)<br />
<br />
<br />
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...<br />
<br />
HTH :)<!--content-->
 
Back
Top