![]() |
Desktop Development »
Miscellaneous »
General
Intermediate
A pager control wrapper classBy Kirk StowellThis article presents a wrapper class for the pager control |
VC6, MFC, Dev
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||

The class CCJPagerCtrl is fairly simple to use. It can be used in either a dialog or view.
For demo purposes, I implemented it in a dialog using a CToolBar, but you can use any control
or view class as the child window. Open your dialog in your resource editor and add a custom control.
Modify the properties of the control as shown below:

In the OnInitDialog() section, add the following code:
// TODO: Add extra initialization here if( !m_wndToolBar.Create(&m_Pager) || !m_wndToolBar.LoadToolBar(IDR_MAINFRAME)) { TRACE0("Failed to create toolbar\n"); return -1; // fail to create } // Make the toolbar flat. m_wndToolBar.ModifyStyle(0, 0x0800); // Set the child HWND. m_Pager.SetChild(m_wndToolBar.m_hWnd); // Set the pager style to PGS_HORZ. m_Pager.ModifyStyle(0,PGS_HORZ); // Set the button size to 15. m_Pager.SetButtonSize(15); // Determine size of child SIZE Size; m_wndToolBar.SendMessage(TB_GETMAXSIZE,0,(LPARAM)&Size); // Set the scroll area for pager. m_Pager.SetScrollArea(Size.cx+15, Size.cy+15);
| You must Sign In to use this message board. | |||||||||||||||
|
|||||||||||||||
|
|||||||||||||||
|
|||||||||||||||
|
|||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+PgUp/PgDown to switch pages.
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 15 Dec 1999 Editor: Chris Maunder |
Copyright 1999 by Kirk Stowell Everything else Copyright © CodeProject, 1999-2010 Web19 | Advertise on the Code Project |