Combo Default Message

D

dan.cawthorne

Happy New Year To Every One,

Can Some Point Me in the Right Direct On How to Achieve Having a
Default Message In My Combo Box

the Message I Would Like Is "Please Select" if a Item has not be
selected.

The Record Source's vary from tables, Select Query's or value List.

Ive Just Setting something up on the Default Option In the Properties
Dialog but no luck.


Regards

Dan
 
K

Klatuu

I would suggest using the form's Before Update event to check for a value in
the combo box:

If IsNull(Me.MyCombo) Then
MsgBox "Please Select Item in MyCombo"
Cancel = True
Me.MyCombo.SetFocus
End If
 

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