How to end an app from its dlls

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

app.exe used several dlls. I want to know how to end app from its dlls.

What is the equivalence of END in VB6

thank
 
* "=?Utf-8?B?TGkgUGFuZw==?= said:
app.exe used several dlls. I want to know how to end app from its dlls.

I would not do that. Instead, I would tell the main application to
"shut down" itself by unloading all forms.
What is the equivalence of END in VB6?

It's 'End', but this doesn't mean that it should be used in VB.NET.
Have a look at 'Application.ExitThread' and 'Application.Exit' too.
 
Back
Top