Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Dialog box with Time out. ?
#4
I found one error in Terry's code...


Code: (Select All)
LOCATE 5, 28: PRINT "NO";
Change to...


Code: (Select All)
LOCATE 5, 28: PRINT "HELL YES";
Other than that, it looks good! Big Grin

Basically the IDE uses this pcopy method for all of the drop-down menus. Things that take very creative solutions are timers for INPUT and _MESSAGEBOX. These pause your program until a reply is made. The way around that is to make two programs. Program 1 calls the second _MESSAGEBOX program via a SHELL statement. When the timer in program 1 runs out, the message box is terminated by a SHELL to TASKKILL. You also need a small database to communicate, or a TCP/IP connection. _SCREENHIDE, Win32 AP minimization, etc. can be used to make it seem like only one program is running.
 
Pete
Reply


Messages In This Thread
Dialog box with Time out. ? - by ahenry3068 - 07-26-2024, 12:44 AM
RE: Dialog box with Time out. ? - by TerryRitchie - 07-26-2024, 05:14 AM
RE: Dialog box with Time out. ? - by TerryRitchie - 07-26-2024, 06:00 AM
RE: Dialog box with Time out. ? - by Pete - 07-26-2024, 07:16 AM
RE: Dialog box with Time out. ? - by hsiangch_ong - 07-26-2024, 04:24 PM



Users browsing this thread: 1 Guest(s)