How do I emulate APP.END from eVB?

  • Thread starter Thread starter JamesL
  • Start date Start date
J

JamesL

I am sorry I have to ask some of the most basic of questions but the
learning curve from eVB to VB.NET is not small.

In my eVb program I exited the program using APP.End. Obviously I can not
do that since App is no recognized in VB.NET.

How can I accomplish the same task of actually exiting the program in
VB.NET?

James Lysaght
 
Application is the object that you might want to use now. However, what you
really want to do is close the main form to exit.

Paul T.
 
Tried both methods and both give me the behavior I was looking for.

Thank you very much!

James
 
Back
Top