Opening an Access application thru .Net

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

Guest

Hey all,

I was just wondering if there is a way for me to open my access application in a vb.net application and when that access application is open, to close my vb.net application?

thanks in advance,
ari
 
Assuming you mean a full blown access app not just the db, all you need to
do is Process.Start(PathAndFileNameHere);
this.Close();
If you want to open an Access db, you cna just use the OleDbConnection.

--
W.G. Ryan MVP Windows - Embedded

http://forums.devbuzz.com
http://www.knowdotnet.com/dataaccess.html
http://www.msmvps.com/williamryan/
ari said:
Hey all,

I was just wondering if there is a way for me to open my access
application in a vb.net application and when that access application is
open, to close my vb.net application?
 
¤ Thank you, just out of curiousity, does that statement start a new thread or something?
¤

Not a thread but another process - which would be Microsoft Access.


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
Back
Top