Hi, I got my program launcher to start the applications i tell it to with this code:
But, the problem now, is when it launches the program it somehow interferes with the program doing anything. When i launch things through the program launcher they don't work, but when i launch them without it they run fine.Code:Private Sub AntrixToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AntrixToolStripMenuItem.Click Dim strPath As String strPath = Application.StartupPath & "example.exe" Process.Start(strPath) End Sub
Can anyone help? Thanks in advance
using Visual basic 2005




Reply With Quote