
FB II Compiler
PG PRO
Debugging
Memory
System
Mathematics
Resources
Disk I/O
Windows
Controls
Menus
Mouse
Keyboard
Text
Fonts
Drawing
Sound
Clipboard
Printing
Communication
ASM
|
PG PRO
Change the tab order in a PG application
How do you change to tab order in an app created in PG. WAIT... what I want to do is for the user to be able to change the tab order of the edit fields in a given window, by setting up a preference window with radio buttons. Then the user could select the tab order of their choice. Chris had explained how to remove an edit field from the tab loop (that had gone from editable to static) a few months back....
elem = FN pGgetRef(_myWindow,_myfield)
FN pGgetObj(_myWindow,elem)
gObjZtype = < -- your new type here
FN pGputObj(_myWindow,elem)
Figured I'll need to use something similar but don't know what.
|