to show a form. I just want to know can i declare a variable to store the form name, so later on i can show the form depends on the value in the variable ?
If yes. How ?
Thanks for replying ......
Visual Basic Classic
Last Comment
PandaYong
8/22/2022 - Mon
Mohammed Nasman
Hello
You mean like this?
Private Sub Command1_Click()
Dim frm As Form
Set frm = New Form2
frm.Show
End Sub
You mean like this?
Private Sub Command1_Click()
Dim frm As Form
Set frm = New Form2
frm.Show
End Sub