Click here to Skip to main content
15,900,907 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
QuestionHow to access servlet in C++? Pin
AnithaSubramani18-Oct-08 3:39
AnithaSubramani18-Oct-08 3:39 
AnswerRe: How to access servlet in C++? Pin
Moak19-Oct-08 8:43
Moak19-Oct-08 8:43 
GeneralRe: How to access servlet in C++? Pin
AnithaSubramani19-Oct-08 20:22
AnithaSubramani19-Oct-08 20:22 
GeneralRe: How to access servlet in C++? Pin
David Crow2-Dec-08 3:27
David Crow2-Dec-08 3:27 
Questionstoring the largest number Pin
trioum18-Oct-08 2:33
trioum18-Oct-08 2:33 
AnswerRe: storing the largest number Pin
Rajesh R Subramanian18-Oct-08 2:39
professionalRajesh R Subramanian18-Oct-08 2:39 
GeneralRe: storing the largest number Pin
trioum18-Oct-08 2:43
trioum18-Oct-08 2:43 
AnswerRe: storing the largest number Pin
Rajesh R Subramanian18-Oct-08 2:46
professionalRajesh R Subramanian18-Oct-08 2:46 
GeneralRe: storing the largest number Pin
Cedric Moonen18-Oct-08 2:54
Cedric Moonen18-Oct-08 2:54 
GeneralRe: storing the largest number Pin
Rajesh R Subramanian18-Oct-08 3:04
professionalRajesh R Subramanian18-Oct-08 3:04 
GeneralRe: storing the largest number Pin
CPallini18-Oct-08 2:56
mveCPallini18-Oct-08 2:56 
GeneralRe: storing the largest number Pin
Member 419459323-Oct-08 5:27
Member 419459323-Oct-08 5:27 
GeneralRe: storing the largest number Pin
Rajesh R Subramanian23-Oct-08 21:46
professionalRajesh R Subramanian23-Oct-08 21:46 
GeneralRe: storing the largest number Pin
Member 419459324-Oct-08 5:37
Member 419459324-Oct-08 5:37 
AnswerRe: storing the largest number Pin
CPallini18-Oct-08 2:57
mveCPallini18-Oct-08 2:57 
GeneralRe: storing the largest number Pin
Rajesh R Subramanian18-Oct-08 3:05
professionalRajesh R Subramanian18-Oct-08 3:05 

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.