Re: CTabCtrl
What does not work well?
Is the call to create failing? or you can't figure out how to switch dialogs
when the tab changes?
Here are some good examples:
http://www.codeproject.com/tabctrl/ctabctrlssl.asp
http://www.codeproject.com/tabctrl/cxtabcontrol.asp
http://www.codeproject.com/tabctrl/stabctrl.asp
AliR.
"Dymus" <dima.petchonkin@gmail.com> wrote in message
news:1155214689.309639.292990@p79g2000cwp.googlegroups.com...
Huston we have a problem.
Using VS 6.0
created Dialog. Where all needed controls will be contained. added some
buttons editTexts, and need to add some tabcontroll to change some
properties,
m_tab_vep.InsertItem(0, _T("Pane1"));
m_tab_vep.InsertItem(1, _T("Pane2"));
m_tab_vep.InsertItem(2, _T("Pane3));
m_tab_vep.InsertItem(3, _T("Pane4"));
layer1.ShowWindow(SW_SHOW);
ok that seems to work, but how to add different panels to this TabCtrl?
I have created them with resource editor as well, but when i try to do
something like:
layer1.Create(IDD_DIALOG_VEP_LAYER_1, & m_tab_vep);
it isn't actually works well... :S where is mistake can you point me?