B Bill Oct 30, 2003 #1 Is there an easy way to add an enumeration to a ComboBox? i.e. comboBox1.Items = MyEnum
J Jay B. Harlow [MVP - Outlook] Oct 30, 2003 #2 Bill, Have you tried: VB.NET syntax: comboBox1.DataSource = [Enum].GetValues(GetType(MyEnum)) Hope this helps Jay
Bill, Have you tried: VB.NET syntax: comboBox1.DataSource = [Enum].GetValues(GetType(MyEnum)) Hope this helps Jay