Re: Windows issue
- Posted by Derek Parnell <derekp at SOLACE.COM.AU> Dec 11, 2000
- 480 views
Due to requests from a few other people too, these two routines had already been added to the library ... doEvents( id ) this is similar to the VB function. It releases control to Windows to process any events outstanding. It is meant to be used in long running user event handlers so that other windows events can have a chance. This is because no windows events get attended to while user code in an event handler is running. The ID parameter can be zero for all events, or just the events for a specific control id. openDialog( id ) This opens a window as modal but does not return control to the next line of code until that window is closed. This is different to openWindow(id, Modal) which returns control to the next line of code immediately the window is opened. The latest version (0.54.4) is still at ----- cheers, Derek Parnell