Click here to Skip to main content
15,921,660 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: MFC design pattern Pin
Software_Developer1-Aug-12 6:25
Software_Developer1-Aug-12 6:25 
QuestionBest way to draw 3d bar graph? Pin
Phil Outram30-Jul-12 8:41
Phil Outram30-Jul-12 8:41 
AnswerRe: Best way to draw 3d bar graph? Pin
_Flaviu30-Jul-12 20:23
_Flaviu30-Jul-12 20:23 
GeneralRe: Best way to draw 3d bar graph? Pin
Phil Outram30-Jul-12 23:24
Phil Outram30-Jul-12 23:24 
GeneralRe: Best way to draw 3d bar graph? Pin
_Flaviu31-Jul-12 0:58
_Flaviu31-Jul-12 0:58 
GeneralRe: Best way to draw 3d bar graph? Pin
Phil Outram31-Jul-12 3:05
Phil Outram31-Jul-12 3:05 
GeneralRe: Best way to draw 3d bar graph? Pin
_Flaviu31-Jul-12 20:20
_Flaviu31-Jul-12 20:20 
QuestionSplitter View Problem in MFC. Pin
Rishav Prabhakar29-Jul-12 19:15
Rishav Prabhakar29-Jul-12 19:15 
Following is the code which i wrote to implement a splitter view to join together 5 dialog. Problem is the split window at the bottom screen occupies the whole form area please help me to remove the error.


C++
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
	//Create Splitter Window
	m_wndSplitter.CreateStatic(this, 2, 1);
	m_wndSplitter2.CreateStatic(&m_wndSplitter, 1, 2, WS_CHILD | WS_VISIBLE, m_wndSplitter.IdFromRowCol (0, 0));
	m_wndSplitter2.CreateView(0, 0, RUNTIME_CLASS(CFormLeft), CSize(200,100), pContext);
	m_wndSplitter1.CreateStatic(&m_wndSplitter, 1, 2, WS_CHILD | WS_VISIBLE, m_wndSplitter.IdFromRowCol (1, 0));
	m_wndSplitter1.CreateView(0, 0, RUNTIME_CLASS(CFormBottomLeft), CSize(200,100), pContext);
	m_wndSplitter1.CreateView(0, 1, RUNTIME_CLASS(CFormBottomRight), CSize(200,100), pContext);
	m_wndSplitter3.CreateStatic(&m_wndSplitter2, 2, 1, WS_CHILD | WS_VISIBLE, m_wndSplitter2.IdFromRowCol (0, 1));
	m_wndSplitter3.CreateView(0, 0, RUNTIME_CLASS(CFormRightUp), CSize(200,100), pContext);
	m_wndSplitter3.CreateView(1, 0, RUNTIME_CLASS(CFormRightBottom), CSize(200,100), pContext);
	return TRUE;
}

AnswerRe: Splitter View Problem in MFC. Pin
«_Superman_»30-Jul-12 1:47
professional«_Superman_»30-Jul-12 1:47 
AnswerRe: Splitter View Problem in MFC. Pin
Software_Developer30-Jul-12 7:20
Software_Developer30-Jul-12 7:20 
GeneralRe: Splitter View Problem in MFC. Pin
Rishav Prabhakar5-Aug-12 19:14
Rishav Prabhakar5-Aug-12 19:14 
QuestionHow to save a CTreeCtrl structure in a file? Pin
Le@rner29-Jul-12 19:01
Le@rner29-Jul-12 19:01 
AnswerRe: How to save a CTreeCtrl structure in a file? Pin
Richard MacCutchan29-Jul-12 21:51
mveRichard MacCutchan29-Jul-12 21:51 
AnswerRe: How to save a CTreeCtrl structure in a file? Pin
CPallini29-Jul-12 21:56
mveCPallini29-Jul-12 21:56 
GeneralRe: How to save a CTreeCtrl structure in a file? Pin
Software_Developer29-Jul-12 22:34
Software_Developer29-Jul-12 22:34 
GeneralRe: How to save a CTreeCtrl structure in a file? Pin
CPallini30-Jul-12 0:26
mveCPallini30-Jul-12 0:26 
GeneralRe: How to save a CTreeCtrl structure in a file? Pin
Software_Developer30-Jul-12 1:08
Software_Developer30-Jul-12 1:08 
QuestionRe: How to save a CTreeCtrl structure in a file? Pin
CPallini30-Jul-12 1:27
mveCPallini30-Jul-12 1:27 
GeneralRe: How to save a CTreeCtrl structure in a file? Pin
Le@rner31-Jul-12 1:30
Le@rner31-Jul-12 1:30 
AnswerRe: How to save a CTreeCtrl structure in a file? Pin
Chris Losinger30-Jul-12 1:17
professionalChris Losinger30-Jul-12 1:17 
GeneralHow to use serialization in mfc dialog based application? Pin
Le@rner29-Jul-12 18:59
Le@rner29-Jul-12 18:59 
GeneralRe: How to use serialization in mfc dialog based application? Pin
Richard MacCutchan29-Jul-12 21:50
mveRichard MacCutchan29-Jul-12 21:50 
GeneralRe: How to use serialization in mfc dialog based application? Pin
CPallini29-Jul-12 21:53
mveCPallini29-Jul-12 21:53 
GeneralRe: How to use serialization in mfc dialog based application? Pin
Software_Developer29-Jul-12 22:37
Software_Developer29-Jul-12 22:37 
GeneralRe: How to use serialization in mfc dialog based application? Pin
Chris Losinger30-Jul-12 1:16
professionalChris Losinger30-Jul-12 1:16 

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.