HELP!!!! ComboBox
Visual Basic
3
Posts
2
Posters
0
Views
1
Watching
-
Hello! I want to programm a ComboBox in Excel. My problem: How can I get a text in the dropdown-list from the ComboBox ????? MFC is the Best
-
Hello! I want to programm a ComboBox in Excel. My problem: How can I get a text in the dropdown-list from the ComboBox ????? MFC is the Best
-
try this: Dim myCB As CommandBarComboBox Set myCB = EXLapp.CommandBars(myComBarIndex).Controls.Add(msoControlComboBox) myCB.AddItem ("Item1") myCB.Text = "select an item" Set myCB = Nothing reply if you have any questions
Thank you very much! :rose: :rose: :rose: MFC is the Best