in reply to Re: Re: Re: Invoking a perl program via an executable c++ program...
in thread Invoking a perl program via an executable c++ program...

I need the user to key in some inputs (arg1 and arg2) after the program is invoked (i.e. he or she need only to specify the arguments but not type out the entire command as in c:\perl>perl program.pl arg1 arg2). Ideally, I would like to have the user simply select the options (the arguments) through a GUI interface without having to type at the command line. Can that be done with perl alone or do I need to use c++ to do the interface? Thanks in advance.
  • Comment on Re: Re: Re: Re: Invoking a perl program via an executable c++ program...

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Invoking a perl program via an executable c++ program...
by data64 (Chaplain) on Nov 16, 2001 at 07:35 UTC
    use perl's TK module. A brief example here