Click here to Skip to main content
16,006,475 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralQUIZ TEST YOUR KNOWLEDGE!!!!!!!!!!!!!!!!! Pin
Opwar10-May-04 17:20
Opwar10-May-04 17:20 
GeneralRe: QUIZ TEST YOUR KNOWLEDGE!!!!!!!!!!!!!!!!! Pin
Maxwell Chen10-May-04 17:30
Maxwell Chen10-May-04 17:30 
GeneralRe: QUIZ TEST YOUR KNOWLEDGE!!!!!!!!!!!!!!!!! Pin
22491710-May-04 18:42
22491710-May-04 18:42 
GeneralRe: QUIZ TEST YOUR KNOWLEDGE!!!!!!!!!!!!!!!!! Pin
Maximilien11-May-04 0:34
Maximilien11-May-04 0:34 
GeneralRe: QUIZ TEST YOUR KNOWLEDGE!!!!!!!!!!!!!!!!! Pin
jan larsen11-May-04 0:56
jan larsen11-May-04 0:56 
GeneralRe: QUIZ TEST YOUR KNOWLEDGE!!!!!!!!!!!!!!!!! Pin
Opwar11-May-04 1:44
Opwar11-May-04 1:44 
GeneralRe: QUIZ TEST YOUR KNOWLEDGE!!!!!!!!!!!!!!!!! Pin
ThatsAlok3-May-05 21:27
ThatsAlok3-May-05 21:27 
GeneralSplitter for SDI Pin
RobJones10-May-04 17:18
RobJones10-May-04 17:18 
Hello,
This is probably very simple but I am having problems.. Here is what I am trying to do..

I have a SDI application explorer style, tree at the left and I want, in column 2, to have another horz split with 2 different list views one on top and one on the bottom, is this possible?

Here is how it is now..

| | | |
| TREE | CTopListView | CBottomListView |
| | | |


This is how i want it to look

| | CTopListView
| |
| TREE |--------------------
| |
| | CBottomListView

Here is how im currently splitting inside CMainFrame

BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT /*lpcs*/,
	CCreateContext* pContext)
{
	// create splitter window
	if (!m_wndSplitter.CreateStatic(this, 1, 3))
		return FALSE;

	if (!m_wndSplitter.CreateView(0, 0, RUNTIME_CLASS(CMachineView), CSize(100, 100), pContext) ||
	    !m_wndSplitter.CreateView(0, 1, RUNTIME_CLASS(CRemoteView), CSize(100, 100), pContext)  ||
	    !m_wndSplitter.CreateView(0, 2, RUNTIME_CLASS(CLocalView), CSize(100, 100), pContext))
	{
		m_wndSplitter.DestroyWindow();
		return FALSE;
	}

	return TRUE;
}


I have tried tons of combo's..

Rob

Whoever said nothing's impossible never tried slamming a revolving door!
GeneralRe: Splitter for SDI Pin
Monty210-May-04 19:54
Monty210-May-04 19:54 
GeneralRe: Splitter for SDI Pin
RobJones10-May-04 19:58
RobJones10-May-04 19:58 
GeneralBeginner would like to know where to start Pin
KingOfTheFaireys10-May-04 15:44
KingOfTheFaireys10-May-04 15:44 
GeneralRe: Beginner would like to know where to start Pin
Christian Graus10-May-04 16:55
protectorChristian Graus10-May-04 16:55 
GeneralRe: Beginner would like to know where to start Pin
parths10-May-04 19:09
parths10-May-04 19:09 
GeneralDynamic Dialog Subclassed Controls Pin
User 1278210-May-04 14:52
User 1278210-May-04 14:52 
GeneralRe: Dynamic Dialog Subclassed Controls Pin
nguyenvhn10-May-04 16:00
nguyenvhn10-May-04 16:00 
GeneralRe: Dynamic Dialog Subclassed Controls Pin
User 1278210-May-04 16:29
User 1278210-May-04 16:29 
Questionhow to control the other exe's ocx control? Pin
wl@syntc.com.cn10-May-04 14:26
wl@syntc.com.cn10-May-04 14:26 
GeneralPrint Reverse Pin
tkelly14010-May-04 13:40
tkelly14010-May-04 13:40 
GeneralRe: Print Reverse Pin
vividtang11-May-04 0:41
vividtang11-May-04 0:41 
QuestionHow to call VB.NET DLL from VC++.NET Pin
Member 87328310-May-04 12:55
Member 87328310-May-04 12:55 
Generalworking with streams Pin
ra_sasi10-May-04 12:44
ra_sasi10-May-04 12:44 
GeneralRe: working with streams Pin
Paul Ranson10-May-04 13:01
Paul Ranson10-May-04 13:01 
GeneralRe: working with streams Pin
ra_sasi11-May-04 6:40
ra_sasi11-May-04 6:40 
GeneralNOT a Site Search? Search text within tables and display results. Pin
thefreebay10-May-04 12:41
thefreebay10-May-04 12:41 
GeneralRe: NOT a Site Search? Search text within tables and display results. Pin
Anthony_Yio10-May-04 16:17
Anthony_Yio10-May-04 16:17 

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.