hi
1-my program have two Form (Form1 & Form2)
2-Form1 Have a Command Whit This Code:
When im Click in Command1 and close the program when : Processing program is running But Im Close The Program!
How Can Fix This?
thanks
1-my program have two Form (Form1 & Form2)
2-Form1 Have a Command Whit This Code:
Code:
Private Sub Command1_Click()
On Error Resume Next
If Form2.Visible = False Then
MsgBox "FALSE"
End If
If Form2.Visible = True Then
MsgBox "True"
End If
End Sub
How Can Fix This?
thanks