We are upgrading from RM/COBOL v10.1 to v12.17 and Windows 7 to 10. This functionality worked prior to the upgrade.
I have a pair of program that I need to debug. I've compiled both with debugging on.
Program A calls program B using WINEXEC:
40920 STRING '"' DELIMITED BY SIZE
40920 RMCOBOL-PATH(1:PATH-INDEX) DELIMITED BY SIZE
40920 '\RUNCOBOL.EXE" B A="A' DELIMITED BY SIZE
40920 PNF-EMPLOYEE-ID DELIMITED BY SIZE
40920 PNF-FAMILY-MEMBER-ID DELIMITED BY SIZE
40920 '" L=' DELIMITED BY SIZE
40920 RUNTIME-PATH DELIMITED BY ' '
40920 'LCSWIN.LIB, L=' DELIMITED BY SIZE
40920 RUNTIME-PATH DELIMITED BY ' '
40920 'LCSIO.LIB, L="' DELIMITED BY SIZE
40920 RMCOBOL-PATH(1:PATH-INDEX) DELIMITED BY SIZE
40920 '\WOWRT.DLL"' DELIMITED BY SIZE
40920 ', L="' DELIMITED BY SIZE
40920 RMCOBOL-PATH(1:PATH-INDEX) DELIMITED BY SIZE
40920 '\LISQL.DLL"' DELIMITED BY SIZE
40920 INTO SYSTEM-COMMAND
40920 END-STRING.
CALL WINEXEC USING WIN-RETURN SYSTEM-COMMAND WIN-TRUE.
I am able to debug program A but I can't get into program B. Does anyone have a solution?
Thank you