Report Builder Reports runing outside of Vantage

We are trying to make an Icon to allow us to run Report Builder Reports
outside of Vantage using the following command line:

V:\Progress\bin\prowin32.exe V:\Vantage\db\vantage.db -p
V:\vantage\RBDT\CRJournalSumWF.p -S epic51 -H Mark4 -N TCP

This works on our Report Builder Developer's workstation (Win 98), but
not on any other workstation (all happened to be Win 2K). I don't see
how the OS could matter. On the Report Builder Developer's workstation
(without Vantage running), the filters box pops up etc. But on any
other machine, we get "Powered by Progress" splash screen, then the
dialog box from within the .p file, but nothing happens after the code
is executed. It just seems to vanish, no errors, no output, nothing
running in Task Manager!

Any ideas?

The .p file is (very crude):
DEF VAR RB-REPORT-NAME AS CHARACTER INITIAL "".
DEF VAR RB-DB-CONNECTION AS CHARACTER INITIAL "".
DEF VAR RB-INCLUDE-RECORDS AS CHARACTER INITIAL "?".
DEF VAR RB-FILTER AS CHARACTER INITIAL "".
DEF VAR RB-MEMO-FILE AS CHARACTER INITIAL "".
DEF VAR RB-PRINT-DESTINATION AS CHARACTER INITIAL "".
DEF VAR RB-PRINTER-NAME AS CHARACTER INITIAL "".
DEF VAR RB-PRINTER-PORT AS CHARACTER INITIAL "".
DEF VAR RB-OUTPUT-FILE AS CHARACTER INITIAL "".
DEF VAR RB-NUMBER-COPIES AS INTEGER INITIAL 1.
DEF VAR RB-BEGIN-PAGE AS INTEGER INITIAL 0.
DEF VAR RB-END-PAGE AS INTEGER INITIAL 0.
DEF VAR RB-TEST-PATTERN AS LOGICAL INITIAL no.
DEF VAR RB-WINDOW-TITLE AS CHARACTER INITIAL "".
DEF VAR RB-DISPLAY-ERRORS AS LOGICAL INITIAL yes.
DEF VAR RB-DISPLAY-STATUS AS LOGICAL INITIAL yes.
DEF VAR RB-NO-WAIT AS LOGICAL INITIAL no.
DEF VAR RB-OTHER-PARAMETERS AS CHARACTER INITIAL "".

DEF var report-library AS CHARACTER.
DEF VAR report-list AS CHARACTER.
DEF VAR report-count AS INTEGER.
DEF VAR report-number AS INTEGER.

DEF VAR display-rep-name AS CHARACTER INITIAL "".
DEF VAR button-select AS LOGICAL INITIAL YES.

/*report-library = "V:\vantage\Ver 51 RB\ar.prl".
RB-Report-name = "ar terms list".
display-rep-name = "M&M AR Terms List".*/

report-library = "V:\vantage\Ver 51 RB\ar.prl".
RB-Report-name = "C R Journal Summary[WF]9x".
display-rep-name = "CASH Journal Summary - WF".

MESSAGE "Run Report : " display-rep-name " ?" SKIP(0)
VIEW-AS ALERT-BOX QUESTION BUTTONS OK-CANCEL UPDATE
button-select.

IF button-select = YES THEN DO:

/*RB-INCLUDE-RECORDS = "S".*/
RB-INCLUDE-RECORDS = "?".

RB-Print-Destination = "D".
/*RB-Print-Destination = "".*/

RB-filter = "".

RUN aderb/_printrb.p (report-library,
RB-REPORT-NAME,
RB-DB-CONNECTION,
RB-INCLUDE-RECORDS,
RB-FILTER,
RB-MEMO-FILE,
RB-PRINT-DESTINATION,
RB-PRINTER-NAME,
RB-PRINTER-PORT,
RB-OUTPUT-FILE,
RB-NUMBER-COPIES,
RB-BEGIN-PAGE,
RB-END-PAGE,
RB-TEST-PATTERN,
RB-WINDOW-TITLE,
RB-DISPLAY-ERRORS,
RB-DISPLAY-STATUS,
RB-NO-WAIT,
RB-OTHER-PARAMETERS).
END.
ELSE DO:
QUIT.
RETURN.
END.
QUIT.
RETURN.
==================================================================================




--
Britt Moelling
M&M Manufacturing Co.