KeyFunction Question

Posted by Admin on 28-Mar-2007 06:59

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.

All Replies

Posted by kevin_saunders on 28-Mar-2007 07:34

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?

Posted by Admin on 28-Mar-2007 07:37

i don't think it could probably be bc i was using shift tab is why it may not have worked. Thanks

Posted by Admin on 28-Mar-2007 07:44

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

This thread is closed