Any way to do something like Dialog.TimedMessage() but with an 'ok' button?
I want to have a dialog popup, but after x amount of seconds have it automatically click the 'ok' (no user response).
Any thoughts?
Professional Software Development Tools
Any way to do something like Dialog.TimedMessage() but with an 'ok' button?
I want to have a dialog popup, but after x amount of seconds have it automatically click the 'ok' (no user response).
Any thoughts?
maybe something like this
when you call the dialog
On Timer EventCode:Page.StartTimer(5000) Dialog.Message("My Window", "Test 1 2 3")
Code:Page.StopTimer() tblWindows = Window.EnumerateTitles(false) for handle, title in tblWindows do if title == "My Window" then Window.Close(handle, CLOSEWND_SENDMESSAGE) break end end
Here is something I did a while back that may help:
http://www.indigorose.com/forums/sho...ed+message+box
Intrigued
Just playing around... but this one shows a countdown.
Ahhh beautiful!!
Hadn't even thought about changing the title text!!
Awesome Idea - thanks!
In some instances you may want to allow for other AMS activity whilst the timed countdown dialog is going on. That is when you may prefer what I put forth. It allows for your AMS application to still function. Both have their place for sure.
![]()
Intrigued