any idea how can i close my process?

VBInfinite

Newcomer
Joined
Feb 28, 2005
Messages
6
Location
Arlington, VA
:confused:

I have to froms: frmMain and frmSplash . When I run the exe file the frmSplash open for couple second then frmMain open. in frmMain I have a exit button, but when I click on it; it only close the app but doesnt close the process. Any idea guys??? :rolleyes:
 
Is the frmMain the Startup object or is frmSplash? It sounds like after a few seconds, the frmSplash is hiding itself, but not Closing... The frmMain then Opens and is eventually Closed by the User, but the process is actually being controlled by frmSplash.

This is a bit of guesswork on my part, because I don't quite know how your code is working, but this is what it sounds like to me.

I would change it up by having the frmMain be your Starup Object and then you can put your code to show the frmSplach within frmMain's Load() event.

Does this make sense?
 
Back
Top