October 7, 201114 yr 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
October 7, 201114 yr 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
October 7, 201114 yr 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
Create an account or sign in to comment