PrJlndni Member Apr 27, 2015 #1 Hi, Good day! I would like to ask if you know how to manually add a tab using "ON TAB" procedure. I mean, how can I manually manipulate the tabs in ABLProgress? Please help. Thank you.
Hi, Good day! I would like to ask if you know how to manually add a tab using "ON TAB" procedure. I mean, how can I manually manipulate the tabs in ABLProgress? Please help. Thank you.
O Osborne Active Member Apr 28, 2015 #2 Do you mean something like this?: Code: ON TAB OF Customer.CustNum IN FRAME F1 DO: MESSAGE "Tab selected." VIEW-AS ALERT-BOX. END. or: Code: ON TAB OF FRAME F1 ANYWHERE DO: MESSAGE "Tab selected." VIEW-AS ALERT-BOX. END.
Do you mean something like this?: Code: ON TAB OF Customer.CustNum IN FRAME F1 DO: MESSAGE "Tab selected." VIEW-AS ALERT-BOX. END. or: Code: ON TAB OF FRAME F1 ANYWHERE DO: MESSAGE "Tab selected." VIEW-AS ALERT-BOX. END.
PrJlndni Member Apr 28, 2015 #3 No Sir. What I mean is like this: ON TAB OF field1 IN FRAME F1 DO: FOCUS field3 IN FRAME F1. END. *I would like to jump to any fields. Not just stucking to the default level of tabbing.
No Sir. What I mean is like this: ON TAB OF field1 IN FRAME F1 DO: FOCUS field3 IN FRAME F1. END. *I would like to jump to any fields. Not just stucking to the default level of tabbing.
PrJlndni Member Apr 28, 2015 #4 Is it possible Sir? All I know is that, FOCUS can only be used in WAIT-FOR Function.
O Osborne Active Member Apr 28, 2015 #5 Something like this then should work: Code: ON TAB OF field1 IN FRAME F1 DO: APPLY "ENTRY" TO field3 IN FRAME F1. RETURN NO-APPLY. END. Also, have a look at KEEP-TAB-ORDER which is used for frames as you may find that useful.
Something like this then should work: Code: ON TAB OF field1 IN FRAME F1 DO: APPLY "ENTRY" TO field3 IN FRAME F1. RETURN NO-APPLY. END. Also, have a look at KEEP-TAB-ORDER which is used for frames as you may find that useful.