pop up message help please

K

Kim K

Can someone show me a script that would trigger on the last field, dropdown
box, or checkbox that would say something simple like "Please review the
information submitted and make sure that all relevent fields are completed
before saving and closing the form. Thank you.'
 
G

Graham Mayor

Run the following on exit from the field

Sub CheckEntry()
MsgBox "Please review the information submitted" & vbCr & _
"and make sure that all relevent fields are" & vbCr & _
"completed before saving and closing the form." & vbCr & _
"Thank you!", vbInformation, "Check entries"
End Sub

However see http://www.gmayor.com/formfieldmacros.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Top