I have 15 command buttons I want to be positioned upon form load.

I can do this the 'long' way by doing this:
command1.top=100
command1.left=200

ect..for all 15. but i know I can put them into a collection or something and just loop through all buttons.

what i need is for 3 buttons to be next to each other then the next three to be just below the first three then the next three to be just below the second three(like the buttons on your number pad or phone.

I don't know exactly how to write the code to do this though(with a collection or for next loop or something)

thanks