What is the defference between END and Unload form1. I here so many complaints about which one to do but never a good resaonable explanation about which one is better to use. So one day a long time ago I heard someone tell me to use unload and another to end so what I did was put this code in the module.

Code:
Sub killapp()
unload form1
unload form2
unload form3
unload form4
end
end sub
Is that better then using them both singaly or what should everyone be using?

Thanks!!