// JP opened flex table

Click to See Complete Forum and Search --> : Bitmap scrolling -


.pcbrainbuster
November 24th, 2007, 02:48 PM
Sup guys,

How do enable my app to scroll bitmaps?

Thanks.

Marc G
November 24th, 2007, 04:24 PM
It depends on the app.
To have scrollbars add the WS_HSCROLL and WS_VSCROLL styles to your window.
Then use the appropriate (see MSDN) functions to set the range of the scrollbar (example: SetScrollInfo, SetScrollRange, ...) and handle WM_VSCROLL and WM_HSCROLL to implement the actual scrolling.

//JP added flex table