skearton Posted March 1, 2008 Posted March 1, 2008 Hello, is there a script that will not let a user print a form unless they have field in all of the required fields? Something like when you are ordering an item online and the database will not let you proceed to the next window unless you have filled in mandatory fields, like your first and last name and email address.
mr_vodka Posted March 1, 2008 Posted March 1, 2008 Well you can check to make sure that all fields have been filled out in your script. You can try something like: If [isEmpty (field1) + IsEmpty (field2) +IsEmpty (field3)... IsEmpty (fieldN) ] Show custom dialog ["Please fill out all required fields...] Else Your processing stuff End If
Recommended Posts
This topic is 6111 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