Private Sub cmdAdmin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdAdmin.Click
System.Diagnostics.Process.Start("C:\Program Files\DataBase\db\database.mdb")
End Sub
When I click the button, the slider on the status bar stops half-way...nothing opens.
Check your process list -- it might not be visible.
The progress bar stops because it's waiting for the other program to end. If you want the progress bar to continue you'll need to put your process.start code in it's own thread (do a search, it's been covered here before).
Chip H.
____________________________________________________________________ If you want to get the best response to a question, please read FAQ222-2244 first
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.