Say, you used this on a secondary form to free up memory like:

Code:
unload uselessform
and later you want to show it again, you would use:

Code:
load uselessform
HeSaidJoe: Yes, all forms ARE loaded at startup so if you call the form.show method, it never returns an error.

Load is the same as:

Code:
Dim Form1 As New Form1
<except it can't be used to create new instances or forms.> new instance of form = new form

get it?