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

C / C++ / MFC

 
GeneralRe: Log-in event Pin
Green Fuze19-Oct-08 22:26
Green Fuze19-Oct-08 22:26 
GeneralRe: Log-in event Pin
Mark Salsbery20-Oct-08 6:00
Mark Salsbery20-Oct-08 6:00 
QuestionCreate a C program in Visual Studio 2005 Pin
bigdenny20019-Oct-08 0:53
bigdenny20019-Oct-08 0:53 
AnswerRe: Create a C program in Visual Studio 2005 [modified] Pin
Perspx19-Oct-08 1:00
Perspx19-Oct-08 1:00 
AnswerRe: Create a C program in Visual Studio 2005 Pin
Mike Dimmick19-Oct-08 1:07
Mike Dimmick19-Oct-08 1:07 
QuestionHow to resize column in CDatagrid Pin
Max++18-Oct-08 21:47
Max++18-Oct-08 21:47 
QuestionHow to save a process's state and resume it later Pin
susandy18-Oct-08 17:08
susandy18-Oct-08 17:08 
AnswerRe: How to save a process's state and resume it later Pin
Cedric Moonen18-Oct-08 23:56
Cedric Moonen18-Oct-08 23:56 
QuestionPathFileExists() and GetFileAttributes() both hang when a network path doesn't exist. Pin
TragicComic18-Oct-08 13:00
TragicComic18-Oct-08 13:00 
AnswerRe: PathFileExists() and GetFileAttributes() both hang when a network path doesn't exist. Pin
David Crow18-Oct-08 13:50
David Crow18-Oct-08 13:50 
Questionhow to change "file alignemnt" in the PE file format? Pin
Joseph Marzbani18-Oct-08 7:46
Joseph Marzbani18-Oct-08 7:46 
AnswerRe: how to change "file alignemnt" in the PE file format? Pin
Mark Salsbery18-Oct-08 8:52
Mark Salsbery18-Oct-08 8:52 
AnswerRe: how to change "file alignemnt" in the PE file format? Pin
Mike Dimmick19-Oct-08 1:17
Mike Dimmick19-Oct-08 1:17 
GeneralRe: how to change "file alignemnt" in the PE file format? Pin
Joseph Marzbani21-Oct-08 3:27
Joseph Marzbani21-Oct-08 3:27 
QuestionLVM_FINDITEM Pin
hxhl9518-Oct-08 5:53
hxhl9518-Oct-08 5:53 
AnswerRe: LVM_FINDITEM Pin
Michael Dunn18-Oct-08 17:13
sitebuilderMichael Dunn18-Oct-08 17:13 
GeneralRe: LVM_FINDITEM Pin
hxhl9518-Oct-08 18:01
hxhl9518-Oct-08 18:01 
GeneralRe: LVM_FINDITEM Pin
krishnakumartm23-Feb-10 2:19
krishnakumartm23-Feb-10 2:19 
AnswerAnother approach Pin
AlexAbramov18-Oct-08 18:34
AlexAbramov18-Oct-08 18:34 
GeneralRe: Another approach Pin
hxhl9518-Oct-08 20:02
hxhl9518-Oct-08 20:02 
GeneralRe: Another approach Pin
AlexAbramov18-Oct-08 20:54
AlexAbramov18-Oct-08 20:54 
GeneralRe: Another approach Pin
hxhl9519-Oct-08 6:42
hxhl9519-Oct-08 6:42 
QuestionHow to Add Asterik Symbol( * ) in the Dialog Name !!!!! Pin
phanindra varma18-Oct-08 4:12
phanindra varma18-Oct-08 4:12 
AnswerRe: How to Add Asterik Symbol( * ) in the Dialog Name !!!!! Pin
Mark Salsbery18-Oct-08 9:15
Mark Salsbery18-Oct-08 9:15 
The controls send notifications to the parent whenever changes are made.

These notifications are typically sent via WM_COMMAND or WM_NOTIFY
messages.

Assuming MFC here (you could do similar using straight Win32):

You could override OnCommand() and OnNotify() in the parent dialog
and in your overrides, look for the change notifications, and if one
is received, take the appropriate action. Make sure you call the base
class method so proper MFC command/notification processing gets done.

For a list of the possible notifications and how they are sent, see
the Windows Controls[^] documentation for the types of controls
you use.

Mark

Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

AnswerRe: How to Add Asterik Symbol( * ) in the Dialog Name !!!!! Pin
David Crow18-Oct-08 13:57
David Crow18-Oct-08 13:57 

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.