when ever i try to unload a form i get this error what does it means ?
Name 'Unload' is not declared.
what should i do ?
10x
Printable View
when ever i try to unload a form i get this error what does it means ?
Name 'Unload' is not declared.
what should i do ?
10x
The unload method has been removed and the computer thinks that you are trying to use a variable or user mande function/sub.
The new way to unload a form is to invoke the close method.
Try and use Me.Close
Jeremy
i m not trying to close the form from itself i m trying to close it from a module or another form .
should i just write frm.close ?
yes