|
-
Feb 11th, 2005, 08:27 AM
#1
Thread Starter
Addicted Member
How to assign array to a MSflexgrid
I have a array as delared following, but I do not know how to assign them to a flexgrid.
I have a MSflesxgrid with 5 rows and 5 columns.
Private Sub UserForm_Initialize()
Dim i, j
Dim xx(5, 5)
For i = 0 To 4
For j = 0 To 4
xx(i, j) = i & j
Debug.Print xx(i, j)
Next
Next
End Sub
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
|