Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

menuwindow popup options?

Status
Not open for further replies.

Volkmaniac

Technical User
Mar 19, 2003
104
US
Hello,

I need some help with a script I'm trying to run. I run a script through ProComm where a series of popups prompts the user to continue. Those popups can occurr at variable time lengths so I need a script that will send enter anytime any popup comes to the screen. Is there something I can use to accomplish this?
 
why don't you just comment out the USERMSG boxes, or are you passing any other input to the boxes via SDLGINPUT or some other input?
 
I still need to hit enter (ok) for the process to continue:

The prompt will ask, "Do you wish to continue?" OK Cancel

If I comment out usermsg would it still move forward with the process? Once I hit ok it enters another process where the timeframe for completion can vary. I need it to strike enter whenever a popup message appears.
 
I'm going to try this:

integer Choice = 0 ; Integer to use with dialog.

while Choice != 2 ; Loop while user doesn't cancel.
transmit "^M" ; Transmit return and wait endwhile
endproc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top