Hi,
form load :
LET picture1(0).Left = 1
LET picture1(0).Top = 1
LET picture1(0).Width = 8
LET picture1(0).Visible = -1
command1 click :
FOR j% = 1 TO 3 - 1
LOAD media.picture1(j%)
LET picture1(j%).Left = j% * 1 + 8
LET picture1(j%).Visible = -1
heres how it looks now after trying to get it close to what i want:
________ ___________
| | | | | |
| | | | | |
| | | | | |
| | | | | |
````````` ````````````
the first two are fine, but as you can see, the 3rd and 4th box are
over lapping, I want the 3rd and 4th box to be on over to the right so
there matching the first two like this :
________ ________ ________ ________
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
````````` ````````` ````````` `````````
can this be done?
thx