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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top