Link to home
Start Free TrialLog in
Avatar of blacklord
blacklord

asked on

1 pixel squares

I want to make an analysis program. This vb 6.0 based program works like that. Think an A4 sized page that filled with 1 pixel sized small squares.
Every 25 blocked square have a border around them. This border made to count the small squares easly.
This is more like to technical drawing paper you might imagine.

Every single mouse click will fill one of the small square under the pointer with black. Of course If there is an error, user might be able to delete that square.

Now how can I draw that squares and develop that mouse click event?

Thanks for your help.

ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of blacklord
blacklord

ASKER

Thanks for your help..

How can I save that drawing to update later?

>>How can I save that drawing to update later?
Since it's draw on form body, i would suggest you create a dynamic 2-dimension array to store the info on which square is clicked and so on..

regards