Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
can I use an array as input range for a (form) combo box ? Kind regards, H.G. Lamy |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() You have to manuall in code use Additem to put each item of an array into a combobox for i = 0 to Ubound(MyArray) Listbox1.additem MyArrray(i) next i -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=170371 Microsoft Office Help |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank You !
H.G. "joel" wrote in message ... You have to manuall in code use Additem to put each item of an array into a combobox for i = 0 to Ubound(MyArray) Listbox1.additem MyArrray(i) next i -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=170371 Microsoft Office Help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I split form controls in a sheet in excel? | Excel Discussion (Misc queries) | |||
Form controls in Excel 07 | Excel Discussion (Misc queries) | |||
ActiveX Controls vs Form Controls | Excel Discussion (Misc queries) | |||
Label, Text and Form controls in Excel 97 | Excel Programming | |||
Form Controls on a worksheet and Macro | Excel Programming |