473,322 Members | 1,259 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

SystemInfo@AboutForm.CS

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.
Nov 16 '05 #1
2 1980
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(Sys tem.Environment.SpecialFol
der.System) + @"\notepad.exe");

- Noah Coad -
Microsoft MVP

"genc ymeri" <ge********@hotmail.com> wrote in message
news:uN**************@TK2MSFTNGP12.phx.gbl...
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.

Nov 16 '05 #2
Thanks.
PS:
Another link ahd helpful info too
http://www.codeproject.com/system/sysinfodlg.asp
"Noah Coad [MVP .NET/C#]" <no**@coad.net> wrote in message
news:uj*************@TK2MSFTNGP11.phx.gbl...
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(Sys tem.Environment.SpecialFol der.System) + @"\notepad.exe");

- Noah Coad -
Microsoft MVP

"genc ymeri" <ge********@hotmail.com> wrote in message
news:uN**************@TK2MSFTNGP12.phx.gbl...
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.


Nov 16 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.