-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Jones
>So, create the perl script the work on the text and then call this in >RB: > >myShell.Mode = 2 >myShell.Execute "perl-script.pl file-to-process.txt" >Do > app.DoEvents(10) >Loop Until Not myShell.IsRunning >// handle the myShell.Errorcode and myShell.Results here That is not a good idea at all. First because the purpose was to compare the execution speed of two different programming languages (and it would not be nice to do that by calling the first programming language from the second), second in your case to execute the Perl script how you say would take more time than to directly call the Perl script (because first the RB program would startup itself, then it would initialize an external task). -- ~Alberto Paderno _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
