Click here to Skip to main content
15,881,882 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionChange Font of caption of dialog box ?? Pin
ana_v1236-Sep-05 20:59
ana_v1236-Sep-05 20:59 
AnswerRe: Change Font of caption of dialog box ?? Pin
Barm6-Sep-05 21:43
Barm6-Sep-05 21:43 
GeneralRe: Change Font of caption (title) of dialog box ?? Pin
Anonymous13-Sep-05 1:47
Anonymous13-Sep-05 1:47 
QuestionProper time to record Pin
LiYS6-Sep-05 20:20
LiYS6-Sep-05 20:20 
AnswerRe: Proper time to record Pin
David Crow7-Sep-05 3:22
David Crow7-Sep-05 3:22 
QuestionProblem related to CImageList(explanation) Pin
a_david1236-Sep-05 20:18
a_david1236-Sep-05 20:18 
QuestionHow does CListCtrl notify its parent window when a cell content has changed? Pin
followait6-Sep-05 20:18
followait6-Sep-05 20:18 
AnswerRe: How does CListCtrl notify its parent window when a cell content has changed? Pin
Ian Bowler7-Sep-05 13:39
Ian Bowler7-Sep-05 13:39 
You can handle the LVN_ENDLABELEDIT message in the CListCtrl, and in the message handler, post a custom Windows message to the parent:

void CMyListCtrl::OnEndLabelEdit(NMHDR* pNMHDR, LRESULT* pResult)
{
...

GetParent()->SendMessage(WM_LISTWASMODIFIED);

...
}

There's a great article on custom windows messages somewhere on CodeProject. I don'w remember who wrote it, but if you google, "custom windows messages codeproject", you should find it.

Hope this helps.

-Ian
GeneralRe: How does CListCtrl notify its parent window when a cell content has changed? Pin
followait7-Sep-05 16:15
followait7-Sep-05 16:15 
AnswerRe: How does CListCtrl notify its parent window when a cell content has changed? Pin
David Crow8-Sep-05 2:34
David Crow8-Sep-05 2:34 
QuestionSEARCH PATTERN Pin
russel.ak6-Sep-05 19:58
russel.ak6-Sep-05 19:58 
AnswerRe: SEARCH PATTERN Pin
kakan6-Sep-05 21:25
professionalkakan6-Sep-05 21:25 
QuestionCross app SendMessage Pin
ayon1116-Sep-05 19:56
ayon1116-Sep-05 19:56 
QuestionHow to make a combobox to be flat? Pin
followait6-Sep-05 19:29
followait6-Sep-05 19:29 
AnswerRe: How to make a combobox to be flat? Pin
David Crow7-Sep-05 3:31
David Crow7-Sep-05 3:31 
Generalyes Pin
followait7-Sep-05 16:06
followait7-Sep-05 16:06 
GeneralRe: yes Pin
David Crow8-Sep-05 2:33
David Crow8-Sep-05 2:33 
QuestionHow the watch the url in IE? Pin
redduke6-Sep-05 18:32
redduke6-Sep-05 18:32 
AnswerRe: How the watch the url in IE? Pin
ThatsAlok6-Sep-05 18:52
ThatsAlok6-Sep-05 18:52 
Questiondata communication between applications Pin
Nishad S6-Sep-05 18:15
Nishad S6-Sep-05 18:15 
AnswerRe: data communication between applications Pin
Christian Graus6-Sep-05 18:44
protectorChristian Graus6-Sep-05 18:44 
GeneralRe: data communication between applications Pin
Nishad S6-Sep-05 18:51
Nishad S6-Sep-05 18:51 
AnswerRe: data communication between applications Pin
ThatsAlok6-Sep-05 18:54
ThatsAlok6-Sep-05 18:54 
GeneralRe: data communication between applications Pin
Christian Graus6-Sep-05 19:04
protectorChristian Graus6-Sep-05 19:04 
AnswerRe: data communication between applications Pin
cmk7-Sep-05 2:32
cmk7-Sep-05 2:32 

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.