Hello
The following code
Quote
Set AADrpDn = .Shapes.AddFormControl(xlDropDown, 4, 84 + 33, 536, 21)
For i = 1 To 10
TextF = Cells(i, 2) & Cells(i, 3) & Cells(i, 4) & Cells(i, 5) & Cells(i, 6)
AADrpDn.ControlFormat.AddItem TextF
Next i
Unquote
is in a excel macro, which working as follows:
1st...
I use the following code
>>Sub TESTA()
>>With Worksheets(1)
>>Set k = .Shapes.AddFormControl(xlListBox, 100, 10, 100, 100)
>> For x = 1 To 10
>> k.ControlFormat.AddItem "test" & x
>> Next
>>End With
>>End Sub
wich produce a drop dawn list (test1, test2, ...,test10).
I need help to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.