Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How build multipage document view

Status
Not open for further replies.

KYLion

Programmer
Jun 21, 2002
2
RU
How build SDI application which looking as Excel for instance.
| __________________________________|
|\List1/\List2\List3/||<|___|___________|>|
-------------------------------------------
And how to place buttons or other controls near by scroll bar. May be, someone know MFC classes which implement this features.
 
The best grids are third party (Spread, FlexGrid, etc.), although MS includes some grids with basic functionality in Visual Studio. They are OCX/ActiveX controls that you create and display on your CDialog or CFormView and you monitor and handle events, such as OnClickCell(), etc.

For the &quot;tabs&quot; at the bottom of the page, use CTabCtrl(), create the number of tabs you need and then monitor the OnSelchangeTab() event. When the user selects a different tab, hide the previous grid and show the selected one.
 
To place other controls near the scrollbar, use the OnSize() event to size and place the grid and each control in the right spots on the CFormView or CDialog.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top