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");
Printable View
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");
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.