Is it proper VB technique to set a form = nothing after unloading it?
VB6 & VC++6 Pro (SP4), Java (Sun JDK)
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
Unload Me Set form1 = Nothing End
Forum Rules