From: Mr. X. on 26 Mar 2010 05:21 How can I in code (VB.NET 2008) execute another executable program ? Thanks :)
From: Onur Güzel on 26 Mar 2010 05:46 On Mar 26, 11:21 am, "Mr. X." <nospam(a)nospam_please.com> wrote: > How can I in code (VB.NET 2008) execute another executable program ? > > Thanks :) Process.Start("path_of_exe") http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx is what you want. HTH, Onur Güzel
From: Herfried K. Wagner [MVP] on 27 Mar 2010 13:23 Am 26.03.2010 10:21, schrieb Mr. X.: > How can I in code (VB.NET 2008) execute another executable program ? 'System.Diagnostics.Process.Start' or 'Shell' ;-). -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
From: Mr. X. on 30 Mar 2010 03:45 What is the difference between process.start and shell? "Herfried K. Wagner [MVP]" <hirf-spam-me-here(a)gmx.at> wrote in message news:e6E1JJdzKHA.3884(a)TK2MSFTNGP06.phx.gbl... > Am 26.03.2010 10:21, schrieb Mr. X.: >> How can I in code (VB.NET 2008) execute another executable program ? > > 'System.Diagnostics.Process.Start' or 'Shell' ;-). > > -- > M S Herfried K. Wagner > M V P <URL:http://dotnet.mvps.org/> > V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
From: Herfried K. Wagner [MVP] on 30 Mar 2010 13:48
Am 30.03.2010 09:45, schrieb Mr. X.: > What is the difference between process.start and shell? 'Shell' is VB's way, 'Process.Start' is the method in the .NET Framework. There are some small differences, but in general 'Process.Start' is more powerful. -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://dotnet.mvps.org/dotnet/faqs/> |