Click here to Skip to main content
15,915,328 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Disable edit box in dialog Pin
arkady460724-Jun-05 9:50
arkady460724-Jun-05 9:50 
GeneralRe: Disable edit box in dialog Pin
toxcct25-Jun-05 4:10
toxcct25-Jun-05 4:10 
GeneralConvert char to const WCHAR* Pin
lemi danger24-Jun-05 9:11
lemi danger24-Jun-05 9:11 
GeneralRe: Convert char to const WCHAR* Pin
David Crow24-Jun-05 9:39
David Crow24-Jun-05 9:39 
GeneralRe: Convert char to const WCHAR* Pin
Jose Lamas Rios24-Jun-05 10:03
Jose Lamas Rios24-Jun-05 10:03 
GeneralRe: Convert char to const WCHAR* Pin
ThatsAlok24-Jun-05 19:53
ThatsAlok24-Jun-05 19:53 
GeneralWM_NOTIFY and CHeaderCtrl Pin
Blake Miller24-Jun-05 8:24
Blake Miller24-Jun-05 8:24 
GeneralGot it... Pin
Blake Miller24-Jun-05 8:36
Blake Miller24-Jun-05 8:36 
Override OnNotify instead Mad | :mad:

BOOL CChildView::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult) <br />
{<br />
	// TODO: Add your specialized code here and/or call the base class<br />
	switch( wParam ){<br />
<br />
	// from header control<br />
	case MHDR_CTRL_ID:{<br />
		NMHDR* pNMHDR = (NMHDR*)lParam;<br />
		switch( pNMHDR->code ){<br />
		case HDN_ENDTRACK:<br />
			TRACE0("Header control end track message\n");<br />
			break;<br />
		}<br />
		}break;<br />
	}<br />
<br />
	<br />
	return CWnd ::OnNotify(wParam, lParam, pResult);<br />
}

Generalinformation bubbles Pin
Anonymous24-Jun-05 8:19
Anonymous24-Jun-05 8:19 
GeneralRe: information bubbles Pin
David Crow24-Jun-05 9:41
David Crow24-Jun-05 9:41 
GeneralRe: information bubbles Pin
Christopher Lloyd24-Jun-05 9:55
Christopher Lloyd24-Jun-05 9:55 
GeneralRe: information bubbles Pin
Ravi Bhavnani24-Jun-05 16:55
professionalRavi Bhavnani24-Jun-05 16:55 
GeneralHyperTerminal and COM Port Pin
A_Fa24-Jun-05 7:56
A_Fa24-Jun-05 7:56 
GeneralCheck if a process already run... Pin
PaloukiLook24-Jun-05 5:57
PaloukiLook24-Jun-05 5:57 
GeneralRe: Check if a process already run... Pin
David Crow24-Jun-05 7:34
David Crow24-Jun-05 7:34 
GeneralRe: Check if a process already run... Pin
PaloukiLook24-Jun-05 10:46
PaloukiLook24-Jun-05 10:46 
GeneralRe: Check if a process already run... Pin
David Crow24-Jun-05 10:53
David Crow24-Jun-05 10:53 
GeneralRe: Check if a process already run... Pin
ThatsAlok27-Jun-05 2:32
ThatsAlok27-Jun-05 2:32 
GeneralSolution Pin
PaloukiLook28-Jun-05 2:28
PaloukiLook28-Jun-05 2:28 
GeneralRe: Solution Pin
ThatsAlok28-Jun-05 2:31
ThatsAlok28-Jun-05 2:31 
GeneralStoring Information On Main Window and Modeless Dialogs Pin
jerry1211a24-Jun-05 5:34
jerry1211a24-Jun-05 5:34 
GeneralRe: Storing Information On Main Window and Modeless Dialogs Pin
Jack Puppy24-Jun-05 6:46
Jack Puppy24-Jun-05 6:46 
GeneralCopy part Of a String into a new string Pin
ana_bahy24-Jun-05 5:30
ana_bahy24-Jun-05 5:30 
GeneralRe: Copy part Of a String into a new string Pin
Chris Losinger24-Jun-05 5:40
professionalChris Losinger24-Jun-05 5:40 
GeneralRe: Copy part Of a String into a new string Pin
ana_bahy24-Jun-05 5:55
ana_bahy24-Jun-05 5:55 

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.