How do I prevent users from entering data in the textbox area of a combobox without disabling the control? I need users to select from the Combobox but don't want them to enter or change the data selected.
Thanks
Victor
Visual Basic.NET.NET Programming
Last Comment
Victor Charles
8/22/2022 - Mon
Karrtik Iyer
Set the "DropDownStyle" property of the combobox to DropDownList. This will allow only items in the list to be selected and will not allow any free-form user input.