wessamzeidan Posted February 24, 2004 Posted February 24, 2004 Hi, how can I start an external application from within my .NET application Thaks Quote Proudly a Palestinian Microsoft ASP.NET MVP My Blog: wessamzeidan.net
Administrators PlausiblyDamp Posted February 24, 2004 Administrators Posted February 24, 2004 Dim ps As New ProcessStartInfo() ps.FileName = "Notepad.exe" 'change to your app Dim p As New Process() p.StartInfo = ps p.Start() Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
wessamzeidan Posted February 24, 2004 Author Posted February 24, 2004 Thanks alot, it worked Quote Proudly a Palestinian Microsoft ASP.NET MVP My Blog: wessamzeidan.net
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.