run command line

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

    #1

    run command line

    I am trying to figure out how to run another program from within VB 6 using
    command line parameters. I want the VB program to be running continuously,
    and call the command line program at regular intervals using a timer. It's
    for a console c++ program which performs a modification on wave files.

    Is there a RUN command that will work? Or how can this be done?


  • Raoul Watson

    #2
    Re: run command line


    "Bill Robinson" <wkb_am@earthli nk.net> wrote in message
    news:rys7c.5151 1$aT1.15107@new sread1.news.pas .earthlink.net. ..[color=blue]
    > I am trying to figure out how to run another program from within VB 6[/color]
    using[color=blue]
    > command line parameters. I want the VB program to be running continuously,
    > and call the command line program at regular intervals using a timer. It's
    > for a console c++ program which performs a modification on wave files.
    >
    > Is there a RUN command that will work? Or how can this be done?
    >
    >[/color]

    Look up the SHELL command using Help. You can also create a batch file if
    needed and still use SHELL to execute it.


    Comment

    Working...