G
gimme_this_gimme_that
Apologies for sort of a newbee question.
I want to
1. place a combo box onto a worksheet,
2. populate it with some values,
3. execute some VBA upon selection.
Creating a DialogBox with a ComboBox isn't an option. It has to be on a
Sheet.
The recorder creates the ComboBox as :
ActiveSheet.OLEObjects.Add(ClassType:="Forms.ComboBox.1",
Link:=False, _
DisplayAsIcon:=False, Left:=67.5, Top:=275.25, Width:=63,
Height:= _
40.5).Select
Once ActiveSheet is set, how do is this ComboBox accessed using VBA?
And how do I add an option item? And get the selection.
Thanks.
I want to
1. place a combo box onto a worksheet,
2. populate it with some values,
3. execute some VBA upon selection.
Creating a DialogBox with a ComboBox isn't an option. It has to be on a
Sheet.
The recorder creates the ComboBox as :
ActiveSheet.OLEObjects.Add(ClassType:="Forms.ComboBox.1",
Link:=False, _
DisplayAsIcon:=False, Left:=67.5, Top:=275.25, Width:=63,
Height:= _
40.5).Select
Once ActiveSheet is set, how do is this ComboBox accessed using VBA?
And how do I add an option item? And get the selection.
Thanks.