I am wanting to create an array of 20 different flex grids
but I notice VB requires that you set items in the array the following way
Dim MSFlexESchedule(20) As MSFlexGrid
For i = 0 To 19
Set MSFlexESchedule(i) = MSFlexGrid1
Next
but this makes all the flex grids the same since then point to MSFlexGrid1. How do I make it so that all the Flex Grids are their own Flex Grids.
Thanks,
Steve
but I notice VB requires that you set items in the array the following way
Dim MSFlexESchedule(20) As MSFlexGrid
For i = 0 To 19
Set MSFlexESchedule(i) = MSFlexGrid1
Next
but this makes all the flex grids the same since then point to MSFlexGrid1. How do I make it so that all the Flex Grids are their own Flex Grids.
Thanks,
Steve