[Migrated content. Thread originally posted on 25 October 2011]
Hello,I want to execute a system command from a native app which I am migrating from RM/COBOL for Windows. This execution in particular looks like this in RM:
CALL "C$GUICFG" USING "System window type=hidden " Z9.
STRING 'CMD /C/S ECHO ' MENSA ' >> \\VPC\\OUT\\ET'
DELIMITED SIZE INTO MANDATO.
CALL "SYSTEM" USING MANDATO.
CALL "C$GUICFG" USING "System window type=show " Z9.
C$GUICFG was used in this case for hidding the new window. Do you know how to obtain the same behaviour in the Visual COBOL version?
Regards