system(), Shell, ShellExecute Replacement?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jonathan Wood

    #1

    system(), Shell, ShellExecute Replacement?

    Okay, I give up. What is the .NET way to do what ShellExecute does?

    Bonus points: Any tips on how I should've been able to figure this out on my
    own. I looked and looked!

    --
    Jonathan Wood
    SoftCircuits Programming


  • Ignacio Machin \( .NET/ C# MVP \)

    #2
    Re: system(), Shell, ShellExecute Replacement?

    Hi,

    "Jonathan Wood" <jwood@softcirc uits.comwrote in message
    news:Ozr$Vy7xHH A.4640@TK2MSFTN GP03.phx.gbl...
    Okay, I give up. What is the .NET way to do what ShellExecute does?
    Process.Start

    google: execute program C#


    Comment

    • Jonathan Wood

      #3
      Re: system(), Shell, ShellExecute Replacement?

      Thanks. Guess I was trying to depend on MSDN and the online help. Silly me.
      I'll try Google from now on.

      --
      Jonathan Wood
      SoftCircuits Programming


      "Ignacio Machin ( .NET/ C# MVP )" <machin TA laceupsolutions .comwrote in
      message news:%23r4QZ37x HHA.4184@TK2MSF TNGP06.phx.gbl. ..
      Hi,
      >
      "Jonathan Wood" <jwood@softcirc uits.comwrote in message
      news:Ozr$Vy7xHH A.4640@TK2MSFTN GP03.phx.gbl...
      >Okay, I give up. What is the .NET way to do what ShellExecute does?
      >
      Process.Start
      >
      google: execute program C#
      >

      Comment

      • Ben Voigt [C++ MVP]

        #4
        Re: system(), Shell, ShellExecute Replacement?


        "Jonathan Wood" <jwood@softcirc uits.comwrote in message
        news:OQAubb9xHH A.988@TK2MSFTNG P02.phx.gbl...
        Thanks. Guess I was trying to depend on MSDN and the online help. Silly
        me. I'll try Google from now on.
        Or on http://www.pinvoke.net/default.aspx/...llExecute.html

        The section saying "Alternativ e Managed API"


        Comment

        Working...