i. hide method is used to remove the form from the screen.
ii.it does not get removed the memory location.
iii. Syntax:
<fromname>.hide
iv.Example:
frmSomebody.hide
v.unload method is used to unload the form.
vi.unload method remove the form from the memory.
vii.Syntax:
Unload.<Formname>
viii.Example:
Unload Me