Click to See Complete Forum and Search --> : Invok an application


svkr2k
January 8th, 2003, 09:10 PM
Hello exerts,

I need a small information from you all ...
How do I invoke an executable using a C# library function ??

(equivalent fn in C : system("<pathname>.exe");

dfb78
January 9th, 2003, 07:16 AM
If I'm understanding what you're asking correctly, you just need to add one line of code:

System.Diagnostics.Process.Start("odbccp32.cpl");

For instance, the above example will open the ODBC properties applet.