Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to incorporate a list box which aloys me to
make multiple choices from one list. Help deosn't seem to give any. Can somebody please give me a steer? Many thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Set the ListStyle property of the listbox to 1-
fmListStyleOption. -----Original Message----- I am trying to incorporate a list box which aloys me to make multiple choices from one list. Help deosn't seem to give any. Can somebody please give me a steer? Many thanks . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Set the Multiselect option to true. You cane get the selected items like so
Dim i With ActiveSheet.ListBox1 For i = 0 To .ListCount - 1 If .Selected(i) Then MsgBox .List(i) End If Next i End With -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Tony C" wrote in message ... I am trying to incorporate a list box which aloys me to make multiple choices from one list. Help deosn't seem to give any. Can somebody please give me a steer? Many thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Textbox and multiline text | Excel Worksheet Functions | |||
Importing a multiline .txt file | Excel Discussion (Misc queries) | |||
Fixing multiline cell | Excel Worksheet Functions | |||
Excel multiline formulas | Excel Worksheet Functions | |||
MultiLine/WordWrap usage | Excel Programming |