Prevent edit on combo box?

  • Thread starter Thread starter Robert Crandal
  • Start date Start date
R

Robert Crandal

I initially added 3 integer values to my combo box,
then I set the value of the combo box to the first
integer. I want my combo box to ONLY offer
these 3 integer choices, but I see that it's possible
for a user to edit the value of the combo box.

How can I prevent users from changing the front
value of a combo box?

Thank you!
 
Set the MatchFound property of the ComobBox to TRUE.
Check out the VBE Help on 'MatchFound'.
 
Back
Top