> I have an unbound combobox control that uses a table as the RowSource, it is
> bound to Column 1. I have the Limit To List property set to Yes, but the
[quoted text clipped - 11 lines]
>
> Thanks.
Use the Combo NotInList event to require an in-list value selection.
Then to not allow a blank (Null) value, code the Form's BeforeUpdate
event to display a message, cancel the record update, and set focus to
the combo box.
Private Sub Form_BeforeUpdate(Cancel As Integer)
If IsNull(Me.ComboName) Then
MsgBox "You cannot leave this Combo Box blank."
Cancel = True
Me.ComboName.SetFocus
End If
End Sub

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Martin - 20 May 2008 20:02 GMT
The form's Before Update event would not work for me, so I wound up using
the control's On Exit event to check for the null.
Thanks for the suggestion.
> > I have an unbound combobox control that uses a table as the RowSource, it is
> > bound to Column 1. I have the Limit To List property set to Yes, but the
[quoted text clipped - 26 lines]
>
> End Sub