Hello all,
Just a quick question... Is it possible to restrict the user to using just the TAB key and the LEFT ARROW key when moving from object to object in a form..
Thanks in advance
JE77
if eventInfo.isPreFilter() then
;// This code executes for each object on the form
if eventinfo.vchar() = "VK_RETURN" or
eventinfo.vchar() = "VK_RIGHT" or
eventinfo.vchar() = "VK_UP" or
eventinfo.vchar() = "VK_DOWN"then
disableDefault
endif
else
;// This code executes only for the form
It's possible, but really not recommended, for the keystrokes do different things in different situations. Would you mind telling us why you need to do this? There might be a different way to accomplish the same thing.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.