CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2002
    Posts
    40

    Invok an application

    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");

  2. #2
    Join Date
    Oct 2002
    Location
    Atlanta, GA
    Posts
    97
    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured