This is probably a really easy question, but I need to know how to cancel the unloading of a form... in the unloading of a form it says
Private Sub form
Printable View
This is probably a really easy question, but I need to know how to cancel the unloading of a form... in the unloading of a form it says
Private Sub form
just set the cancel to -1
private Sub Form_Unload(Cancel as Integer)
Cancel = -1
End Sub
Thanx, that got it workin=)