In previous VB6 apps I've exited programs using "Unload Me". What's the proper way to do this in VB.NET
-- Ethan --
Printable View
In previous VB6 apps I've exited programs using "Unload Me". What's the proper way to do this in VB.NET
-- Ethan --
VB Code:
Application.Exit()
besides , you can use "Me.Close" if that called from your startup proj form.Quote:
Originally posted by pirate
VB Code:
Application.Exit()