PDA

View Full Version : POP UP MESSAGE ON FORM FIELD AFTER SELECTION



stevembe
09-30-2014, 09:33 AM
Firstly thanks for taking the time to read this. I have a form field that has a simple Yes or No selection and what I want to happen is for a pop up message to come up if Yes is selected and a different message if No is selected. I did want to avoid adding VBA to my simple database but not sure if this can be done without it?

Any help would be hugely appreciated.

ranman256
09-30-2014, 12:55 PM
You could have it call a macro, but it too would need vba.
so...



sub chkBox_afterupdate()
if chkBox.value then
msgbox "checked"
else
msgbox "different message"
end if