simple combobox question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello, just a simple comboboxquestion. i am using Visual Studio 2005 and .NET
2.0.
I have a combobox on the form and i want that combobox to be locked, so the
user can select a value, but the user cannot change the values inside of the
combobox.
Like a normal dropdown list on a internet webpage.
 
Patrick F schreef:
Hello, just a simple comboboxquestion. i am using Visual Studio 2005 and .NET
2.0.
I have a combobox on the form and i want that combobox to be locked, so the
user can select a value, but the user cannot change the values inside of the
combobox.
Like a normal dropdown list on a internet webpage.

Set the DropDownStyle property to ComboBoxStyle.DropDownList
 
Back
Top