Click here to Skip to main content
15,914,488 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralTerminating a Process Pin
20-Sep-01 11:43
suss20-Sep-01 11:43 
GeneralRe: Terminating a Process Pin
Ghazi H. Wadi20-Sep-01 12:55
Ghazi H. Wadi20-Sep-01 12:55 
GeneralRe: Terminating a Process Pin
20-Sep-01 12:58
suss20-Sep-01 12:58 
QuestionHow to enable sharing resources from an extension DLL? Pin
20-Sep-01 11:31
suss20-Sep-01 11:31 
AnswerRe: How to enable sharing resources from an extension DLL? Pin
Tomasz Sowinski20-Sep-01 11:46
Tomasz Sowinski20-Sep-01 11:46 
GeneralRe: How to enable sharing resources from an extension DLL? Pin
20-Sep-01 11:53
suss20-Sep-01 11:53 
Generalsubsplitter of splitter Pin
Peter Molnar20-Sep-01 10:11
Peter Molnar20-Sep-01 10:11 
GeneralRe: subsplitter of splitter Pin
Oscar Vazquez21-Sep-01 11:35
Oscar Vazquez21-Sep-01 11:35 
I never trie a Property, but for any other king of view this code work ok.

BOOL CChildFrame::OnCreateClient( LPCREATESTRUCT /*lpcs*/,CCreateContext* pContext)
{
// create a splitter with 1 row, 2 columns
if (!m_wndSplitter.CreateStatic(this, 1, 2))
{
TRACE0("Failed to CreateStaticSplitter\n");
return FALSE;
}
m_wndSplitter.SetScrollStyle( 0 ); //Use frame scroller

// Create view in first splitter Row 0, COl 0
if (!m_wndSplitter.CreateView(0, 0,
RUNTIME_CLASS(CArchivoTreeView), CSize(130, 50), pContext))
{
TRACE0("Failed to create second pane\n");
return FALSE;
}

// Create nested splitter in second col of first splitter
if (!m_wndSplitterRE.CreateStatic(
&m_wndSplitter, // our parent window is the first splitter
2, 1, // 2 rows 1 col
WS_CHILD | WS_VISIBLE | WS_BORDER | WS_HSCROLL, // style, WS_BORDER is needed
m_wndSplitter.IdFromRowCol(0, 1) ))
{
TRACE0("Failed to create nested splitter\n");
return FALSE;
}
m_wndSplitterRE.SetScrollStyle( 0 );

// Create view in first row of second splitter
if (!m_wndSplitterRE.CreateView(0, 0,
RUNTIME_CLASS(CHeaderInfo), CSize(80, 65), pContext))
{
TRACE0("Failed to create first pane\n");
return FALSE;
}

// Create view in second row of second splitter
if (!m_wndSplitterRE.CreateView(1, 0,
RUNTIME_CLASS(CFileView), CSize(0, 0), pContext))
{
TRACE0("Failed to create second pane\n");
return FALSE;
}

// TODO
}

GeneralWindow paint problem when using CPropertySheet with CComboBox Pin
20-Sep-01 10:07
suss20-Sep-01 10:07 
GeneralStrange CTreeCtrl behavior Pin
Ken Goguen20-Sep-01 9:16
Ken Goguen20-Sep-01 9:16 
GeneralRe: Strange CTreeCtrl behavior Pin
Michael Dunn20-Sep-01 9:28
sitebuilderMichael Dunn20-Sep-01 9:28 
GeneralRe: Strange CTreeCtrl behavior Pin
Ken Goguen20-Sep-01 9:50
Ken Goguen20-Sep-01 9:50 
GeneralRe: Strange CTreeCtrl behavior Pin
Tomasz Sowinski20-Sep-01 9:29
Tomasz Sowinski20-Sep-01 9:29 
GeneralRe: Strange CTreeCtrl behavior Pin
Ken Goguen20-Sep-01 9:53
Ken Goguen20-Sep-01 9:53 
GeneralRe: Strange CTreeCtrl behavior Pin
Tomasz Sowinski20-Sep-01 9:57
Tomasz Sowinski20-Sep-01 9:57 
GeneralRe: Strange CTreeCtrl behavior Pin
Ken Goguen20-Sep-01 10:12
Ken Goguen20-Sep-01 10:12 
GeneralDLL Question Pin
#realJSOP20-Sep-01 9:03
professional#realJSOP20-Sep-01 9:03 
GeneralRe: DLL Question Pin
Tomasz Sowinski20-Sep-01 9:15
Tomasz Sowinski20-Sep-01 9:15 
GeneralOleAutomation Pin
duggie20-Sep-01 8:43
duggie20-Sep-01 8:43 
GeneralRe: OleAutomation Pin
Michael P Butler20-Sep-01 10:34
Michael P Butler20-Sep-01 10:34 
GeneralRe: OleAutomation Pin
duggie20-Sep-01 10:52
duggie20-Sep-01 10:52 
GeneralRe: OleAutomation Pin
Michael P Butler20-Sep-01 10:55
Michael P Butler20-Sep-01 10:55 
GeneralRe: OleAutomation Pin
Carlos Antollini20-Sep-01 10:53
Carlos Antollini20-Sep-01 10:53 
GeneralRe: OleAutomation Pin
duggie24-Sep-01 10:09
duggie24-Sep-01 10:09 
GeneralRe: OleAutomation Pin
Carlos Antollini25-Sep-01 9:15
Carlos Antollini25-Sep-01 9:15 

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.