Ok on some of our login pages the shift tab wont tab back words through the tab order.
So can any one help me what to do here.
if keyfunction(lastkey) = "Shift+Tab" then
do:
/* Not to sure how to do this from here on out. */
end.
The 'Shift-Tab' keyfunction is BACK-TAB. Is there anything that is trapping the BACK-TAB function in the code, preventing the actual back-tab event?
i don't think it could probably be bc i was using shift tab is why it may not have worked. Thanks
works like a charm
IF KEYFUNCTION(LAST-KEY) = "BACK-TAB" THEN
DO:
APPLY "BACK-TAB" TO SELF.
RETURN NO-APPLY.
END.
using it on the any-key trigger
thanks