|
-
Jun 6th, 2006, 03:09 AM
#1
Thread Starter
New Member
Creating MultiColumns ListBox from VBA array
Hi,
I'm trying to create a listbox regarding to a VBA "virtual" array I have.
for example:
Dim MyArray(3, 3)
For i = 1 To 3
For k = 1 To 3
MyArray(i, k) = i & k
Next
Next
Now, I want to enter the data to a multicolumn listbox (3 X 3) but don't know how.
Help?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|