In my code I draw a rectangle and usually the rectangle is too large for the screen, even when maximised. I have set the form property AutoScroll
to true and this d
Setting AutoScroll = true
on a Control/Form
alone will only ensure that all Controls
you add/nest to the parent will either show or can be reached by the scrollbars which will show up as needed.
This doesn't do anything for stuff you draw.
To make the drawing scrollable you need to set the AutoScrollMinSize
to large enough values.
If you don't know in advance then at least while drawing you should be able to determine them from your data.