Skip to main content

I am running a Rumba script to capture mainframe CICS screen fields and storing them to Excel, when I am running the scripts the mainframe screen POPS UP and also it goes to different screens as per the script and all those screen keeps appear when the macro is running.

Is there a way I can disable these mainframe screen POP-UPS while running the macro??


#Rumba

I am running a Rumba script to capture mainframe CICS screen fields and storing them to Excel, when I am running the scripts the mainframe screen POPS UP and also it goes to different screens as per the script and all those screen keeps appear when the macro is running.

Is there a way I can disable these mainframe screen POP-UPS while running the macro??


#Rumba

Hi madhuhn6s,

You could try to use ShowWindow from User32.dll to hide the Rumba frame while your Rumba script execute and then again to Show the Rumba Frame when you are ready (see: http://www.jasinskionline.com/windowsapi/ref/s/showwindow.html). If you need help finding the window handle for the Rumba frame, you should contact Supportline. (or Google FindWindow and/or GetForegroundWindow)

Tom