Hi Guys,
I wanted to make this less time consuming:
It's all about incrementing xxx & yyy the correct number of times.Code:lonwork = limit_left
latwork = limit_top
WHILE lonwork < displon
lonwork = lonwork + zoom
xxx++;
WEND
WHILE latwork > displat
latwork = latwork - zoom
yyy++
WEND
The first while loop can be replaced with this:
I can't work out the second while loop.Code:temp var word
temp = displon - limit_left
xxx = temp / zoom
Any help appreciated.
Cheers, Art.