05-24-2007 01:41 AM
How can I do tabbing using 'ENTER' key between clusters? e.g. Front panel having few clusters and each cluster has only one control, now I want to tab between controls of clusters by 'ENTER' key.
Generally tabbing between clusters demands three steps, assume that tab (focus key) is at one of the controls of cluster so,
Press 'Ctrl + Up' to get out of cluster (Means we need to set 'PlatMods=[Shift=False, Ctrl=True, Cmd=False, Opt=True]' and 'Mods=[Num Pad=False, Menu Key=True]' and 'Vkey=Up' and 'Char=0' in 'Key Down?' event of the Event Structure.)
Press 'Tab' Key to jump at next cluster (Means Vkey=ASCII' and 'Char=9')
Finally Press 'Ctrl + Down' to get in to cluster (Means we need to set 'PlatMods=[Shift=False, Ctrl=True, Cmd=False, Opt=True]' and 'Mods=[Num Pad=False, Menu Key=True]' and 'Vkey=Down' and 'Char=0' in 'Key Down?' event of the Event Structure.)
Should I perform this three step operation by hitting only 'ENTER' key?
Moreover, is it possible to generate User Event using 'Generate User Event.vi'?
05-24-2007 02:47 AM
05-24-2007 06:00 AM