Hello All,
I have a form with a chart control and as the chart is zoomed I also want the form to be resized (with scroll bars). How do I resize the form.
Printable View
Hello All,
I have a form with a chart control and as the chart is zoomed I also want the form to be resized (with scroll bars). How do I resize the form.
Normally a view is resized by getting the parent of the view and calling MoveWindow(). The child view should resize with the parent.
If this is an MDI app, then you will need to get the MDI Client window, it's client rect and move the frame window within the MDI client.
Steve