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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to make an interface like access2000 (with a left navigate bar)? 1

Status
Not open for further replies.

kinzaze

Programmer
Jan 20, 2000
3
0
0
FR
i plan to make a programm with visual C++ 5.0<br>
and i would like to make an MDI application but <br>
i don't know which composant i can use for splitting<br>
the screen <br>
thank you
 
The basic idea is this...<br>
- Create a custom CMDIChildWnd class<br>
- In that class declare a CSplitterWnd object. Define the splitter object in the CMDIChildWnd class' OnCreateClient function.<br>
- In the apps InitInstance function's CMultiDocTemplate definition use your custom CMDIChildWnd class for the RUNTIME_CLASS instead of the generic RUNTIME_CLASS(CChildFrame).
 
First thanks for you help ,<br>
<br>
i have made this , just exactly do this (if ever you just have told me this just 2 week ago :) i could have gone spent good time instead of driving crazy )<br>
but now i try to make a toolbar that can move in all the client area of the mainframe of the mdi and that could be independant of any document open .<br>
Problem how can we &quot;attach&quot; a view to the CControlBar derived class??<br>
any idea would be appreciate <br>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top