sprynmd Posted March 1, 2001 Posted March 1, 2001 My script is complicated because this test doesn't seem to work: IsEmpty( Status(CurrentFieldName) ) Am I asking too much?!
sprynmd Posted March 1, 2001 Author Posted March 1, 2001 Except I want to know if the field that the cursor is currently in is empty. I don't want to hard-code the field name. I want to use Status(currentfieldname) to get the name then use the result to see if the field is empty by using the isEmpty() function. It doesn't seem to work that way and I must create a lot more code and actually name each possible field.
Kurt Knippel Posted March 1, 2001 Posted March 1, 2001 quote: Originally posted by sprynmd: Except I want to know if the field that the cursor is currently in is empty. I don't want to hard-code the field name. I want to use Status(currentfieldname) to get the name then use the result to see if the field is empty by using the isEmpty() function. It doesn't seem to work that way and I must create a lot more code and actually name each possible field. Status ( CurrentFieldName ) will simply give you the name of the field and will never be empty. There is no way to feed a variable field reference to any function. You can script a checking routine where it check to see which field you are in and then checks that field for its contents, but this requires you to program all possibilities beforehand. ------------------ =-=-=-=-=-=-=-=-=-=-=-=-= Kurt Knippel Consultant Database Resources mailto:[email protected] http://www.database-resources.com =-=-=-=-=-=-=-=-=-=-=-=-=
sprynmd Posted March 2, 2001 Author Posted March 2, 2001 Yep - that's the way I did it. Just wanted to make sure I wasn't missing an easier way. Thanks!
PinnWal Posted March 2, 2001 Posted March 2, 2001 Try dropping the "status" from the check. IsEmpty(FieldName)...
Recommended Posts
This topic is 8938 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