Is it proper VB technique to set a form = nothing after unloading it?
Printable View
Is it proper VB technique to set a form = nothing after unloading it?
Yes. That will clear up resources
Set form1 = Nothing is used to free up any resources that were being used by your form. You don't have to use it, but it's a good habit.
Code:Unload Me
Set form1 = Nothing
End