spawn under windows

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

    spawn under windows

    Hello,

    To launch a new process under windows I use the spawn command spawnvp

    spawnvp(_P_NOWA IT, cmd, ppTab);
    with ppTab containing [ /C, myprog.bat ]

    myprog.bat does produce output.

    If I launch this from within DevStudio 6.0 I see the outbut in the window

    If I launh it as a stand-alone program, the cmd window that opens show
    nothing ...

    Does anybody have any idea about how to solve this ?

    Thank you


    Tieum
  • Tieum

    #2
    Re: spawn under windows

    Tieum wrote:[color=blue]
    > Hello,
    >
    > To launch a new process under windows I use the spawn command spawnvp
    >
    > spawnvp(_P_NOWA IT, cmd, ppTab);
    > with ppTab containing [ /C, myprog.bat ]
    >
    > myprog.bat does produce output.
    >
    > If I launch this from within DevStudio 6.0 I see the outbut in the window
    >
    > If I launh it as a stand-alone program, the cmd window that opens show
    > nothing ...
    >
    > Does anybody have any idea about how to solve this ?
    >
    > Thank you
    >
    >
    > Tieum[/color]

    If anayone is interessed, I solved this by using _P_DETACH instead of
    _P_NOWAIT.


    Tieum

    Comment

    Working...