-
Scrolling a Dialog
hi everybody,
I have a dialog template that is resizable with maximize,minimize buttons on it. The horizontal scroll bar and the vertical scroll bar are also set. If I scroll on these scroll bars the dialog is not scrolled. How to implement this. Please some one help me....
With thanks and regards
Bala
-
Re: Scrolling a Dialog
You need to overide OnVScroll(). To do this, use ClassWizard to add the handler function to your dialog class.
-
Re: Scrolling a Dialog
In your OnVScroll you need to call functions like ScrollWindow(), GetScrollPos(), and any other scrolling functions found in the CWnd class.