is this possible? I have an applet with a button called
GoToNextForm.....
I want to click on the button and have it open another applet or form??? can this be done?
i know in VB i use forms and use subs like this
Code:
Private Sub cmdSubmit_Click()
prompt$ = "Goto Next Form."
reply = MsgBox(prompt$, vbOKCancel, "Goto Next Form.")
If reply = vbOK Then
Load Form4
Form4.Visible = True
DoEvents
End If
