Hi all,

I have a Combo Box on my form called Combo1. I have added a number of items to the box using "AddItem". I want to be able to let the user only select an option from the box and not type in something in the space.

Something like this (in a timer control):

If Not Combo1.Text = "Option A" or Not Combo1.Text = "Option B" or Not Combo1.Text = "Option C" Then

Msg = MsgBox("Only select an item from the box")

End If

This code does not work very well though, because if I select "Option A" for example it still produces the message box??

Any Info

Thanks,

Mark