I want to dynamically create a 2x2 grid of buttons.
If there’s a way, please let me know.
ex)
dim a(2,2) as DesktopButton
for x as Integer = 0 to 1
for y as Integer = 0 to 1
a(x,y) = new DesktopButton
next
next
6 posts - 4 participants