I created a form and i inserted a close button.
I want to close this form and another form of the project when i clicked the button close.
I typed the following but the outside form doesn't close.
Private Sub btnClose_Click( ByVal sender As Object, ByVal e As System.EventArg s) Handles btnClose.Click
Me.Close()
frmTest.Close()
End Sub
can anyone help
I want to close this form and another form of the project when i clicked the button close.
I typed the following but the outside form doesn't close.
Private Sub btnClose_Click( ByVal sender As Object, ByVal e As System.EventArg s) Handles btnClose.Click
Me.Close()
frmTest.Close()
End Sub
can anyone help
Comment