Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 88
Default Multiple Listbox? Population

I have 32 list boxes on a userform. I want to populate them with the same
data. The list boxes are named listbox1, listbox2, etc.

Is there an easier way to populate these boxes instead of doing each one
separately?

Like a loop or something

Dim Counter, Listboxnumber AS Single
For Counter = 1 to 50
For lbnbr = 1 to 32
Listbox & Listboxnumber.additem Counter
Next Listboxnumber
Next Counter

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,253
Default Multiple Listbox? Population

Private Sub UserForm_Initialize()

Dim i As Integer
Dim aItems() As String
Const nItems As Integer = 50
Const nLists As Integer = 32

'Create a 0based, 2 Dimensional array for the listitems
ReDim aItems(0 To nItems - 1, 0 To 0)
'Fill it...
For i = 1 To nItems
aItems(i - 1, 0) = "Item" & i
Next

'Assign the array to each control's list property
For i = 1 To nLists
Me.Controls("Listbox" & i).List = aItems
Next


End Sub




--
keepITcool
| www.XLsupport.com | keepITcool chello nl | amsterdam


Pete wrote :

I have 32 list boxes on a userform. I want to populate them with the
same data. The list boxes are named listbox1, listbox2, etc.

Is there an easier way to populate these boxes instead of doing each
one separately?

Like a loop or something

Dim Counter, Listboxnumber AS Single
For Counter = 1 to 50
For lbnbr = 1 to 32
Listbox & Listboxnumber.additem Counter
Next Listboxnumber
Next Counter

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Data Population for multiple sheets Shaun Excel Discussion (Misc queries) 1 February 22nd 07 06:33 PM
ListBox population from Excel range Tim Coddington Excel Programming 4 July 11th 04 02:12 AM
ListBox Multiple Selection Todd Huttenstine Excel Programming 1 April 26th 04 06:15 PM
excel - ListBox multiple Select sjvenz Excel Programming 4 December 9th 03 08:52 AM
listbox.value not equal to listbox.list(listbox.listindex,0) ARB Excel Programming 0 October 22nd 03 12:46 AM


All times are GMT +1. The time now is 12:44 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"