S
Stuart
A command button on a sheet presents a form (Frm_Initial) which has a
textbox displaying information for the user, plus Ok and Cancel buttons
(where Cancel should exit the routine, and Ok present the next form)....
except that neither button works.
The initial button on the sheet:
Private Sub CommandButton1_Click()
Load Frm_Initial
Frm_Initial.Show
End Sub
and the form code:
Private Sub Cb2_Cancel_Click()
'user clicked Cancel
Unload Frm_Initial
End Sub
Private Sub Cb1_Ok_Click()
'user clicked OK
'Unload Me
Frm_SelectCert.Show
End Sub
What am I doing wrong, please?
Regards.
textbox displaying information for the user, plus Ok and Cancel buttons
(where Cancel should exit the routine, and Ok present the next form)....
except that neither button works.
The initial button on the sheet:
Private Sub CommandButton1_Click()
Load Frm_Initial
Frm_Initial.Show
End Sub
and the form code:
Private Sub Cb2_Cancel_Click()
'user clicked Cancel
Unload Frm_Initial
End Sub
Private Sub Cb1_Ok_Click()
'user clicked OK
'Unload Me
Frm_SelectCert.Show
End Sub
What am I doing wrong, please?
Regards.