Dagel Posted July 13, 2006 Posted July 13, 2006 I have a runtime (Dev 6) which requires lots of user input. I'm trying to find an easy way to validate each field for proper text useage (not all UPPER or lower). The following works but it's going to take forever to do for each field. Is there a better way? If(first_name = "", "", not Exact(first_name, Upper(first_name)) and not Exact(first_name, Lower(first_name))) Thanks for any thoughts!
T-Square Posted July 13, 2006 Posted July 13, 2006 You might try just running the change on the field regardless. Then you aren't slowing things down with the test. I don't know whether you have the Proper function in 6 (I imagine you do), but you might want that instead.
Recommended Posts
This topic is 7055 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