If I have an Exit button, what's the code to exit the form when i click it. I know Im useless.
Printable View
If I have an Exit button, what's the code to exit the form when i click it. I know Im useless.
vb Code:
End
put that inside your buttons click sub :)
Never, NEVER use End. If you want to close the current form then call Me.Close. If you want to exit the application call Application.Exit.Quote:
Originally Posted by VBlee