What are "coding musts" when it comes to saving or freeing up memory in your VB program?
Thanks,
Jeff
Printable View
What are "coding musts" when it comes to saving or freeing up memory in your VB program?
Thanks,
Jeff
Basically just unload a form and set it to nothing.
Or you can set objects to nothing as well.
VB Code:
Set Form1 = Nothing Unload Me