I am new to programming. When does the program execute the Form_Unload? I have put lines of code in the Form_Unload and is not executing them when the program ends (using "End"). Thanks
Printable View
I am new to programming. When does the program execute the Form_Unload? I have put lines of code in the Form_Unload and is not executing them when the program ends (using "End"). Thanks
using End just dumps the program and doesn't fire the Unload Event. Like hitting the Stop button in the IDE. Use Unload Me to properly unload your form
:)