Gambler Posted April 18, 2002 Posted April 18, 2002 On Windows, most users use the Enter (or Return key) key to advance from field to field. Is there a way in FMP, to have control on a field (or layout) that allows a user to use the Enter or Tab key to advance from field to field (without creating a cariage return)? TIA
djgogi Posted April 18, 2002 Posted April 18, 2002 quote: Originally posted by BarryZ: On Windows, most users use the Enter (or Return key) key to advance from field to field. Is there a way in FMP, to have control on a field (or layout) that allows a user to use the Enter or Tab key to advance from field to field (without creating a cariage return)? TIA Tab=next field Shift -tab=previuos field Dj
Chuck Posted April 18, 2002 Posted April 18, 2002 Not easily. You can enter a script that loops, pausing one second in each loop. When a user hits the enter key, they exit the field, so you could check to see if there is anything for the Status( CurrentFieldName ) and if not, go to the next field, re-entering the loop until the next enter hit. Chuck
Gambler Posted April 18, 2002 Author Posted April 18, 2002 Okay if there's no way to reassign the enter key to simulate the tab key. Is there a way to disable the enter key from putting a CR (carriage return) in a field and if this can be accomplished, could we also flash a message instructing the user to hit the tab key?
Chuck Posted April 18, 2002 Posted April 18, 2002 If you're sure that you never want a carriage return in the field, you can use validation. In define fields, validate using a calculation. If you're validating a field called MyField, make the validation the following: code: not PatternCount( MyField, "
Fitch Posted April 18, 2002 Posted April 18, 2002 I know of two plug-ins for Windows (you mentioned Windows, but your icon is Mac?) that make the Enter key act like Tab: FreeTAB and Tabby Keys. I haven't used them myself, but I have set up the looping Go to next field () script. Works very well in some setups. But sometimes it works just as well to say, "I know you're used to using the Enter key, but this program uses the Tab key. Life's a lady canine. Have some cake." Or something.
Recommended Posts
This topic is 8325 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now