Re: Scrolling a Window
- Posted by Ron Tarrant <rtarrant at sympatico.ca> Sep 09, 2002
- 393 views
petelomax at blueyonder.co.uk wrote: > > Derek partially answered this, but I found I had to use: > > --====code begins====-- > oldcodes=setTabCodes(0) -- save std/disable tab handling > procedure onGotFocus_MAIN() > void=setTabCodes(0) -- let me handle tab when main has focus > end procedure > > procedure onLostFocus_MAIN() > void=setTabCodes(oldcodes) -- restore std tab handling > end procedure > onGotFocus[MAIN] = routine_id("onGotFocus_MAIN") > onLostFocus[MAIN] = routine_id("onLostFocus_MAIN") > --====code ends====-- > > Depends on how complex your program & tab handling requirements are. Hmmm... This reminds me of some things we used to do to the Commodore 64. And the Amiga... Hmmm... -Ron T.