Click here to Skip to main content
15,903,201 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Copy Folder Tree Pin
TeVc++30-Sep-08 21:48
TeVc++30-Sep-08 21:48 
GeneralRe: Copy Folder Tree Pin
Naveen30-Sep-08 21:57
Naveen30-Sep-08 21:57 
GeneralRe: Copy Folder Tree Pin
TeVc++30-Sep-08 22:04
TeVc++30-Sep-08 22:04 
GeneralRe: Copy Folder Tree Pin
Naveen30-Sep-08 22:18
Naveen30-Sep-08 22:18 
GeneralRe: Copy Folder Tree Pin
TeVc++30-Sep-08 23:28
TeVc++30-Sep-08 23:28 
GeneralRe: Copy Folder Tree Pin
Naveen30-Sep-08 23:31
Naveen30-Sep-08 23:31 
GeneralRe: Copy Folder Tree Pin
TeVc++30-Sep-08 23:38
TeVc++30-Sep-08 23:38 
GeneralRe: Copy Folder Tree Pin
Sauce!1-Oct-08 5:27
Sauce!1-Oct-08 5:27 
GeneralRe: Copy Folder Tree Pin
TeVc++2-Oct-08 18:54
TeVc++2-Oct-08 18:54 
GeneralRe: Copy Folder Tree Pin
Sauce!3-Oct-08 3:03
Sauce!3-Oct-08 3:03 
QuestionHow do I pass MySQL connection ID to COM using VC++ 9.0? Pin
Ger Hayden29-Sep-08 19:48
Ger Hayden29-Sep-08 19:48 
QuestionHow to get Exchange server permission Pin
Member 443453629-Sep-08 19:09
Member 443453629-Sep-08 19:09 
QuestionProblem using CLR in MFC ActiveX controls Pin
astibich229-Sep-08 18:27
astibich229-Sep-08 18:27 
QuestionReading Excel File Pin
ganychina29-Sep-08 18:07
ganychina29-Sep-08 18:07 
AnswerRe: Reading Excel File Pin
Hamid_RT29-Sep-08 20:04
Hamid_RT29-Sep-08 20:04 
RantRepost. Pin
CPallini29-Sep-08 22:29
mveCPallini29-Sep-08 22:29 
JokeRe: Repost. Pin
ThatsAlok29-Sep-08 22:43
ThatsAlok29-Sep-08 22:43 
QuestionHow to show 3 different views in 3 subpanels in right panel using by using splitterwnd? Pin
srikadi29-Sep-08 17:46
srikadi29-Sep-08 17:46 
if (!m_nwSplitter.CreateStatic (this, 1, 2)||
!m_nwSplitter.CreateView (0, 0, RUNTIME_CLASS (CNetworkTree),CSize (220,0), pContext))
{
return FALSE;
}


if (!m_nwSplitter2.CreateStatic(&m_nwSplitter, 3, 1,WS_CHILD | WS_VISIBLE| WS_BORDER,m_nwSplitter.IdFromRowCol(0, 1))||
!m_nwSplitter2.CreateView(0,0,RUNTIME_CLASS(CNetworkVwList),CSize(0,200), pContext)||
!m_nwSplitter2.CreateView(1,0,RUNTIME_CLASS(CSWPlanView),CSize(0,200), pContext)||
!m_nwSplitter2.CreateView(2,0,RUNTIME_CLASS(CTaskListView),CSize(0,0), pContext))
{
return FALSE;
}


before the code was like
CView * pane2 = (CView *)pNwViews>GetPane(0,1);

now i want to show one view in right panel ie in m_nwSplitter2.CreateView(0,0,...)..other in m_nwSplitter2.CreateView(1,0,...)..


i wrote like CView * pane2 = (CView *)pNwViews>GetPane(0,0);

but its not working...
plz help me...
thanx in advance..
AnswerRe: How to show 3 different views in 3 subpanels in right panel using by using splitterwnd? Pin
Iain Clarke, Warrior Programmer29-Sep-08 22:50
Iain Clarke, Warrior Programmer29-Sep-08 22:50 
QuestionProblem with TryEnterCriticalSection Pin
krishnan.s29-Sep-08 17:36
krishnan.s29-Sep-08 17:36 
AnswerRe: Problem with TryEnterCriticalSection Pin
Naveen29-Sep-08 17:48
Naveen29-Sep-08 17:48 
GeneralRe: Problem with TryEnterCriticalSection Pin
krishnan.s29-Sep-08 17:50
krishnan.s29-Sep-08 17:50 
GeneralRe: Problem with TryEnterCriticalSection Pin
Naveen29-Sep-08 17:56
Naveen29-Sep-08 17:56 
AnswerRe: Problem with TryEnterCriticalSection Pin
SRKSHOME29-Sep-08 18:30
SRKSHOME29-Sep-08 18:30 
AnswerRe: Problem with TryEnterCriticalSection Pin
ThatsAlok29-Sep-08 22:48
ThatsAlok29-Sep-08 22:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.