Re: "wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Bob Sneidar
What I do is try to telnet into the database first using shell commands. Bob S > On Jun 13, 2015, at 15:20 , Dr. Hawkins wrote: > > On Sat, Jun 13, 2015 at 1:03 PM, Dr. Hawkins wrote: > >> >> On Sat, Jun 13, 2015 at 1:00 PM, Mark Schonewille < >> m.schonewi...@economy-x-talk.com> wrote: >>

Re: "wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Bob Sneidar
If it’s modal, you don’t have to do anything. Opening a stack as modal causes the calling script to halt execution. Once the modal stack closes the script continues to run. Bob S > On Jun 13, 2015, at 10:03 , Dr. Hawkins wrote: > > I am writing my own modal replacement for answer for a vari

Re: "wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Dr. Hawkins
On Sat, Jun 13, 2015 at 1:03 PM, Dr. Hawkins wrote: > > On Sat, Jun 13, 2015 at 1:00 PM, Mark Schonewille < > m.schonewi...@economy-x-talk.com> wrote: > >> >> You're right, the debugger doesn't like modal windows. It looks like you >> actually don't have a problem :-) >> >> My favorite kind of pr

Re: "wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Dr. Hawkins
On Sat, Jun 13, 2015 at 1:00 PM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > > You're right, the debugger doesn't like modal windows. It looks like you > actually don't have a problem :-) > > My favorite kind of problem :) -- Dr. Richard E. Hawkins, Esq. (702) 508-8462 ___

Re: "wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Mark Schonewille
Hi Richard, You're right, the debugger doesn't like modal windows. It looks like you actually don't have a problem :-) -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 502

Re: "wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Dr. Hawkins
On Sat, Jun 13, 2015 at 11:00 AM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > You don't want to use the wait command here. You want to use a callback > message. If your stacks are real modal windows, you don't even need that. > Once debugged, they're real modal windows. Hmm, t

Re: "wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Mark Schonewille
Hi Richard, You don't want to use the wait command here. You want to use a callback message. If your stacks are real modal windows, you don't even need that. With a real modal window: on scriptWithDialog // do something here go stack "My Dialog" as modal // the script

Re: "wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Richard Gaskin
Dr. Hawkins wrote: > I am writing my own modal replacement for answer for a variety of > reasons > > Once I have a modal stack/card set up, there isn't anything to do but > wait for it. > > I could use either > > repeat until the retVal of me is not empty > wait 10 milliseconds with messages >

Re: "wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Ray
Do you think maybe it's the idleRate? On 6/13/2015 7:03 PM, Dr. Hawkins wrote: I am writing my own modal replacement for answer for a variety of reasons Once I have a modal stack/card set up, there isn't anything to do but wait for it. I could use either repeat until the retVal of me is not e

"wait until" or "repeat until" (with a wait) for modal dialog wait?

2015-06-13 Thread Dr. Hawkins
I am writing my own modal replacement for answer for a variety of reasons Once I have a modal stack/card set up, there isn't anything to do but wait for it. I could use either repeat until the retVal of me is not empty wait 10 milliseconds with messages next repeat or I could use wait unti