Hi dear all !
I am programming a windows form application using C++.net(CLR).
In my program I am to draw a flow chart or such shapes with undetermined length, so I must scroll the form to enable user to see all parts of the shape.
I enabled AutoScroll method of my main form like this :
this->AutoScroll::set(true)
It actually shows me two scroll bars, one horizontal and the other vertical but they don't scroll to the point I wanted them. Simply put, If a draw a rectangle outside the size of the form, it becomes invisible to me.
Which path am I going wrong ?
Thanks in advance
:)