Matrixxdg Posted October 7, 2011 Posted October 7, 2011 Hi All, I need some help with a trigger.... I think!! :-) I have created a field that has a value in it. Not all records have a value in the field. I need to have a "Pop-up Message" appear when a user loads a record that has a value in the field. Any ideas? Thanks..MG
efen Posted October 7, 2011 Posted October 7, 2011 Use OnObjectEntry with the script steps of pseudo code Go to chosen field If IsEmpty(chosen field) Show custom dialog or whatever you want to occur End if
comment Posted October 7, 2011 Posted October 7, 2011 I need to have a "Pop-up Message" appear when a user loads a record that has a value in the field. Use a OnRecordLoad script trigger with a script like: If [ not IsEmpty ( YourTable::YourField ) ] Show Custom Dialog [...] End if
Recommended Posts
This topic is 5069 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