• Thread starter Thread starter genc ymeri
  • Start date Start date
G

genc ymeri

Hi,
I have an About form and I need to know how to run "System Info" clicking to
a button of the "About" form ????? ( "System Info" path may change from one
system to another one)

Thank You in advance.
 
Use "System.Environment.GetFolderPath" to obtain special system folders.
Use "System.Diagnostics.Process.Start" to run a new program. So to run
notepad, try this:

Process.Start(System.Environment.GetFolderPath(System.Environment.SpecialFol
der.System) + @"\notepad.exe");

- Noah Coad -
Microsoft MVP
 
Back
Top