M
mutant
Guest
Hi.
I have a MDI child form, in closing handler i have:
I dont want the user to be able to close the mdi child by clicking x cause its vital to my app. When i do that i cant close mdi parent either. Can anyone point me to some soultion?
Thanks.
I have a MDI child form, in closing handler i have:
Visual Basic:
Private Sub frmForm_Closing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
e.Cancel = True
End Sub
Thanks.