Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I can't get the timeout to work on the Mac.
To get around, I used conditional compiling with #IF so if the system detects a Mac OS, it will expand the splash form to show a "Continue" button that the user can press to continue. On the PC, I can show the form modeless and just unload the form after waiting. See code below... If anyone has ideas on how to get a timeout to work on the Mac let me know! Thanks! John Here's a snippet: #If Win32 Then frmSplash.Height = 82 frmSplash.Show vbModeless Wait 3 ' Wait 3 seconds (WAIT is a small custom sub to wait designated number of secs) Unload frmSplash ' automatic time out #ElseIf Mac Then frmSplash.Height = 105 ' Expand form to show "Continue" button which unloads the form when pressed frmSplash.Show ' Need separate mac processing to allow user to hit OK button ' since mac's can't show form modeless #End If |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Inputbox Location on Screen. Can you code it to popup lower on the screen ? | Excel Programming | |||
print box opens in right screen of dual screen setup why | Excel Discussion (Misc queries) | |||
Need to convert point on screen to various screen resolutions | Excel Discussion (Misc queries) | |||
Need to convert point on screen to various screen resolutions | Excel Programming | |||
How to copy data from excel to power point screen by screen? | Excel Programming |