Click here to Skip to main content
15,911,039 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Moving GDI+ objects question Pin
csrss5-Mar-11 3:04
csrss5-Mar-11 3:04 
GeneralRe: Moving GDI+ objects question Pin
Andrew Brock5-Mar-11 3:09
Andrew Brock5-Mar-11 3:09 
GeneralRe: Moving GDI+ objects question Pin
csrss5-Mar-11 3:16
csrss5-Mar-11 3:16 
Question[solved] class size doesn't seem to be determined correctly [modified] Pin
Albert Holguin4-Mar-11 18:13
professionalAlbert Holguin4-Mar-11 18:13 
AnswerRe: class size doesn't seem to be determined correctly Pin
Niklas L4-Mar-11 23:14
Niklas L4-Mar-11 23:14 
GeneralRe: class size doesn't seem to be determined correctly Pin
Albert Holguin5-Mar-11 6:45
professionalAlbert Holguin5-Mar-11 6:45 
AnswerRe: class size doesn't seem to be determined correctly Pin
Ozer Karaagac4-Mar-11 23:22
professionalOzer Karaagac4-Mar-11 23:22 
GeneralRe: class size doesn't seem to be determined correctly Pin
Albert Holguin5-Mar-11 6:48
professionalAlbert Holguin5-Mar-11 6:48 
GeneralRe: class size doesn't seem to be determined correctly Pin
Albert Holguin5-Mar-11 10:21
professionalAlbert Holguin5-Mar-11 10:21 
GeneralRe: class size doesn't seem to be determined correctly Pin
Ozer Karaagac5-Mar-11 11:24
professionalOzer Karaagac5-Mar-11 11:24 
GeneralRe: class size doesn't seem to be determined correctly Pin
Albert Holguin5-Mar-11 11:42
professionalAlbert Holguin5-Mar-11 11:42 
AnswerRe: class size doesn't seem to be determined correctly Pin
CPallini4-Mar-11 23:34
mveCPallini4-Mar-11 23:34 
GeneralRe: class size doesn't seem to be determined correctly Pin
Albert Holguin5-Mar-11 6:50
professionalAlbert Holguin5-Mar-11 6:50 
AnswerRe: class size doesn't seem to be determined correctly Pin
Stephen Hewitt5-Mar-11 0:32
Stephen Hewitt5-Mar-11 0:32 
QuestionBest way to reduce a 128-bit MD5 to 64-bit Pin
Joe Woodbury4-Mar-11 12:04
professionalJoe Woodbury4-Mar-11 12:04 
AnswerRe: Best way to reduce a 128-bit MD5 to 64-bit PinPopular
Peter_in_27805-Mar-11 0:30
professionalPeter_in_27805-Mar-11 0:30 
GeneralRe: Best way to reduce a 128-bit MD5 to 64-bit Pin
Joe Woodbury5-Mar-11 6:04
professionalJoe Woodbury5-Mar-11 6:04 
QuestionCCriticalSection seems to cause some weirdness in dll Pin
Albert Holguin4-Mar-11 10:49
professionalAlbert Holguin4-Mar-11 10:49 
AnswerRe: CCriticalSection seems to cause some weirdness in dll Pin
Ozer Karaagac4-Mar-11 13:31
professionalOzer Karaagac4-Mar-11 13:31 
GeneralRe: CCriticalSection seems to cause some weirdness in dll Pin
Albert Holguin4-Mar-11 13:40
professionalAlbert Holguin4-Mar-11 13:40 
QuestionHow can I send LVN_COLUMNCLICK to the parent ? Pin
_Flaviu4-Mar-11 8:59
_Flaviu4-Mar-11 8:59 
Hi . I stock on the follow problem :
I have an CListCtrlEx , derived from CListCtrl , where I have :
// CListCtrlEx.h
afx_msg void OnHdnItemclick(NMHDR* pNMHDR, LRESULT* pResult);

and implementation :
// CListCtrlEx.cpp
	ON_NOTIFY_REFLECT(LVN_COLUMNCLICK, CListCtrlEx::OnHdnItemclick)
...
...

void CListCtrlEx::OnHdnItemclick(NMHDR* pNMHDR, LRESULT* pResult)
{
	NM_LISTVIEW* phdr = reinterpret_cast<NM_LISTVIEW*>(pNMHDR);
	SortOnColumn(phdr->iSubItem, TRUE);
	*pResult = 0;
}


and I need to catch LVN_COLUMNCLICK in parent window :

// CTestList5View.h
	afx_msg void OnHdnItemclickList1(NMHDR* pNMHDR, LRESULT* pResult);

and implementation :
	ON_NOTIFY(LVN_COLUMNCLICK, IDC_LIST1, OnHdnItemclickList1)
...
...
void CTestList5View::OnHdnItemclickList1(NMHDR* pNMHDR, LRESULT* pResult) 
{
	NM_LISTVIEW* phdr = reinterpret_cast<NM_LISTVIEW*>(pNMHDR);
	// TODO: Add your control notification handler code here

	CString sTemp;
	sTemp.Format("%d",phdr->iSubItem);
	TRACE("\n column %s\n",sTemp);

	*pResult = 0;
}

the problem is that program don't cross through CTestList5View::OnHdnItemclickList1
.... why ? And how can I solve the problem ?
AnswerRe: How can I send LVN_COLUMNCLICK to the parent ? Pin
Hans Dietrich4-Mar-11 18:46
mentorHans Dietrich4-Mar-11 18:46 
GeneralRe: How can I send LVN_COLUMNCLICK to the parent ? [modified] Pin
_Flaviu4-Mar-11 20:57
_Flaviu4-Mar-11 20:57 
Questionproblem with device context (and some other bad things) Pin
csrss4-Mar-11 8:38
csrss4-Mar-11 8:38 
QuestionRe: problem with device context (and some other bad things) Pin
CPallini4-Mar-11 9:50
mveCPallini4-Mar-11 9:50 

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.