Hey guys,
I want to write code that does something like this:
If option = 1 Then
Create one Button and display it
Else If option = 2 Then
Create two Buttons and display them
End If
To do this, can I simply do:
If option = 1 Then
Dim Button1 as Button
Me.Button1.Show()
End If
And on like that?
Thanks,
JP