Add enum to combo box?

  • Thread starter Thread starter Bill
  • Start date Start date
Bill,
Have you tried:

VB.NET syntax:
comboBox1.DataSource = [Enum].GetValues(GetType(MyEnum))

Hope this helps
Jay
 
Back
Top