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

C / C++ / MFC

 
GeneralRe: Writing to Registry Pin
_AnsHUMAN_ 8-Jul-08 1:00
_AnsHUMAN_ 8-Jul-08 1:00 
AnswerRe: Writing to Registry Pin
halibobo8-Jul-08 16:27
halibobo8-Jul-08 16:27 
QuestionHow can i retrieve the information shown in Local area connection status Pin
vicky000007-Jul-08 22:33
vicky000007-Jul-08 22:33 
AnswerRe: How can i retrieve the information shown in Local area connection status Pin
David Crow8-Jul-08 2:57
David Crow8-Jul-08 2:57 
QuestionUP and DOWN keyboard event in MFC Application(Very Urgent) Pin
AnithaSubramani7-Jul-08 22:31
AnithaSubramani7-Jul-08 22:31 
AnswerRe: UP and DOWN keyboard event in MFC Application(Very Urgent) Pin
vicky000007-Jul-08 22:48
vicky000007-Jul-08 22:48 
GeneralRe: UP and DOWN keyboard event in MFC Application(Very Urgent) Pin
AnithaSubramani7-Jul-08 23:08
AnithaSubramani7-Jul-08 23:08 
GeneralRe: UP and DOWN keyboard event in MFC Application(Very Urgent) Pin
vicky000007-Jul-08 23:37
vicky000007-Jul-08 23:37 
AnswerRe: UP and DOWN keyboard event in MFC Application(Very Urgent) Pin
_AnsHUMAN_ 7-Jul-08 22:50
_AnsHUMAN_ 7-Jul-08 22:50 
GeneralRe: UP and DOWN keyboard event in MFC Application(Very Urgent) Pin
AnithaSubramani7-Jul-08 23:13
AnithaSubramani7-Jul-08 23:13 
AnswerRe: UP and DOWN keyboard event in MFC Application(Very Urgent) Pin
CPallini7-Jul-08 23:29
mveCPallini7-Jul-08 23:29 
AnswerRe: UP and DOWN keyboard event in MFC Application(Very Urgent) Pin
David Crow8-Jul-08 3:12
David Crow8-Jul-08 3:12 
JokeRe: UP and DOWN keyboard event in MFC Application(Very Urgent) Pin
Mark Salsbery8-Jul-08 6:43
Mark Salsbery8-Jul-08 6:43 
AnswerRe: UP and DOWN keyboard event in MFC Application(Very Urgent) Pin
Stephen Hewitt8-Jul-08 15:03
Stephen Hewitt8-Jul-08 15:03 
Questiondialog help Pin
projectip7-Jul-08 22:08
projectip7-Jul-08 22:08 
AnswerRe: dialog help Pin
_AnsHUMAN_ 7-Jul-08 22:22
_AnsHUMAN_ 7-Jul-08 22:22 
GeneralRe: dialog help Pin
projectip7-Jul-08 22:36
projectip7-Jul-08 22:36 
GeneralRe: dialog help Pin
_AnsHUMAN_ 7-Jul-08 23:02
_AnsHUMAN_ 7-Jul-08 23:02 
GeneralRe: dialog help Pin
projectip7-Jul-08 23:17
projectip7-Jul-08 23:17 
GeneralRe: dialog help Pin
_AnsHUMAN_ 7-Jul-08 23:32
_AnsHUMAN_ 7-Jul-08 23:32 
Do you want to say that once the value in the text box is changed it should get updated in the combo box in the parent. To implement this you will need event notification mechanism by which you can notify the parent that the text in some control of the child has changed and the value in the parent is to be updated.
An easier way would be, when the user clicks on some button that dismisses the child dialog you can send the value in the parent. For this you need to check the return value from the child dialog in the parent something like
if(IDOK==myChildDlg.DoModal())
{
// Update values in the combo here that are taken from the child
}

Somethings seem HARD to do, until we know how to do them.
Wink | ;-) _AnShUmAn_

GeneralRe: dialog help Pin
projectip8-Jul-08 0:17
projectip8-Jul-08 0:17 
GeneralRe: dialog help [modified] Pin
Varghese Paul M8-Jul-08 1:16
Varghese Paul M8-Jul-08 1:16 
AnswerRe: dialog help Pin
Rajesh R Subramanian8-Jul-08 0:52
professionalRajesh R Subramanian8-Jul-08 0:52 
QuestionGet focus Pin
iayd7-Jul-08 21:50
iayd7-Jul-08 21:50 
AnswerRe: Get focus Pin
Yajnesh Narayan Behera8-Jul-08 1:54
Yajnesh Narayan Behera8-Jul-08 1:54 

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.