Hello Everyone.
Can somebody help me code out array of checkboxes to move during runtime, fitting in the table in a listview.
Right now, I have 5 columns, 30 items. Which means there's 5 checkbox per item in a listview. I have 150 control array checkboxes. From Check1(0) to Check1(149).
All i got is this i don't know what to put next.
That code move the checkboxes in a single line. What i want to do is after 5 checkboxes it will move down.Code:Dim leftcor As Long leftcor = 7000 For y = 0 To 149 Check1(y).Move leftcor, 1650, 200, 200 leftcor = leftcor + 1000 Next y
Thanks in advance.




Reply With Quote