Click here to Skip to main content
15,885,141 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Error reading from com port Pin
nitgonz3-Jan-06 2:55
nitgonz3-Jan-06 2:55 
GeneralRe: Error reading from com port Pin
krmed3-Jan-06 4:44
krmed3-Jan-06 4:44 
GeneralRe: Error reading from com port Pin
krmed3-Jan-06 4:43
krmed3-Jan-06 4:43 
AnswerRe: Error reading from com port Pin
rajan.msmy2-Jan-06 18:09
rajan.msmy2-Jan-06 18:09 
QuestionToolBar ToolTip is blocked by whom? Pin
rajan.msmy2-Jan-06 3:36
rajan.msmy2-Jan-06 3:36 
AnswerRe: ToolBar ToolTip is blocked by whom? Pin
Owner drawn2-Jan-06 16:45
Owner drawn2-Jan-06 16:45 
GeneralRe: ToolBar ToolTip is blocked by whom? Pin
rajan.msmy2-Jan-06 17:59
rajan.msmy2-Jan-06 17:59 
GeneralRe: ToolBar ToolTip is blocked by whom? Pin
Owner drawn2-Jan-06 18:08
Owner drawn2-Jan-06 18:08 
There are notification messages for this purpose.

Suppose you wanna handle selection change event then do this. (Write this in the parent window)
ON_NOTIFY_REFLECT(TVN_SELCHANGED, OnNotifySelChange)

in .h file

afx_msg void OnNotifySelChange(NMHDR* pNm, LRESULT *pRes);

in .cpp file

void CYouparentClass::OnNotifySelChange(NMHDR* pNm , LRESULT *pRes)
{
   LPNMTREEVIEW pNMTreeView = reinterpret_cast<LPNMTREEVIEW>(pNMHDR);
   //this will be the event handler for selection changes of the treectrl
   //you can use SetButtonInfo here
}


Jesus Loves You and Me Smile | :)
<marquee direction="up" height="50" scrolldelay="1" step="1" scrollamount="1" style="background-color:'#44ccff'">
--Owner Drawn
--Nothing special
--Defeat is temporary but surrender is permanent
--Never say quits
--Jesus is Lord


QuestionHow to delay about 1/20 milisecond ? Pin
quangpk2-Jan-06 1:43
quangpk2-Jan-06 1:43 
AnswerRe: How to delay about 1/20 milisecond ? Pin
kakan2-Jan-06 3:18
professionalkakan2-Jan-06 3:18 
AnswerRe: How to delay about 1/20 milisecond ? Pin
babuprasath2-Jan-06 4:01
babuprasath2-Jan-06 4:01 
AnswerRe: How to delay about 1/20 milisecond ? Pin
nde_plume2-Jan-06 6:02
nde_plume2-Jan-06 6:02 
AnswerRe: How to delay about 1/20 milisecond ? Pin
Alexander M.,3-Jan-06 7:43
Alexander M.,3-Jan-06 7:43 
QuestionHow to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 0:54
RamL2-Jan-06 0:54 
AnswerRe: How to change parents Text prperty label from child dialog box Pin
Owner drawn2-Jan-06 0:57
Owner drawn2-Jan-06 0:57 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 1:04
RamL2-Jan-06 1:04 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
Owner drawn2-Jan-06 1:07
Owner drawn2-Jan-06 1:07 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 1:14
RamL2-Jan-06 1:14 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
Owner drawn2-Jan-06 1:28
Owner drawn2-Jan-06 1:28 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 1:44
RamL2-Jan-06 1:44 
AnswerRe: How to change parents Text prperty label from child dialog box Pin
Prakash Nadar2-Jan-06 3:21
Prakash Nadar2-Jan-06 3:21 
GeneralRe: How to change parents Text prperty label from child dialog box Pin
RamL2-Jan-06 19:00
RamL2-Jan-06 19:00 
QuestionHow to read value at address 0000:0408 ? Pin
quangpk1-Jan-06 23:23
quangpk1-Jan-06 23:23 
AnswerRe: How to read value at address 0000:0408 ? Pin
kakan2-Jan-06 3:04
professionalkakan2-Jan-06 3:04 
GeneralRe: How to read value at address 0000:0408 ? Pin
Prakash Nadar2-Jan-06 3:23
Prakash Nadar2-Jan-06 3:23 

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.