Click here to Skip to main content
15,909,325 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Animated (*.ani) cursor not showing Pin
josip cagalj12-Feb-09 22:36
josip cagalj12-Feb-09 22:36 
GeneralRe: Animated (*.ani) cursor not showing Pin
josip cagalj12-Feb-09 22:46
josip cagalj12-Feb-09 22:46 
Questionideas for database to use... Pin
Thilek9-Feb-09 22:34
Thilek9-Feb-09 22:34 
AnswerRe: ideas for database to use... Pin
Eytukan9-Feb-09 22:37
Eytukan9-Feb-09 22:37 
GeneralRe: ideas for database to use... Pin
Thilek10-Feb-09 0:23
Thilek10-Feb-09 0:23 
GeneralRe: ideas for database to use... Pin
Thilek10-Feb-09 0:29
Thilek10-Feb-09 0:29 
GeneralRe: ideas for database to use... Pin
Eytukan10-Feb-09 8:43
Eytukan10-Feb-09 8:43 
QuestionReportView Style Pin
ATM@CodeProject9-Feb-09 19:47
ATM@CodeProject9-Feb-09 19:47 
AnswerRe: ReportView Style Pin
Sarath C9-Feb-09 20:17
Sarath C9-Feb-09 20:17 
AnswerRe: ReportView Style Pin
SandipG 9-Feb-09 20:18
SandipG 9-Feb-09 20:18 
GeneralRe: ReportView Style Pin
ATM@CodeProject9-Feb-09 21:44
ATM@CodeProject9-Feb-09 21:44 
QuestionCustom Message From Child Dialog Pin
zakkas24839-Feb-09 19:25
zakkas24839-Feb-09 19:25 
AnswerRe: Custom Message From Child Dialog Pin
_AnsHUMAN_ 9-Feb-09 19:34
_AnsHUMAN_ 9-Feb-09 19:34 
GeneralRe: Custom Message From Child Dialog Pin
zakkas24839-Feb-09 19:53
zakkas24839-Feb-09 19:53 
GeneralRe: Custom Message From Child Dialog Pin
SandipG 9-Feb-09 20:09
SandipG 9-Feb-09 20:09 
Why you need messages for this purpose??
You can simply do something like this..

void Abc::OnAdd()
{
  Def d;
  d.ptrParent = this;
  if(d.DoModel()==IDOK)
  {
      ...
     // here you can acess data members of the class def using d directly..
  }
  else
  {
    ... 
  }
}

I hope it helps..
BTW: Plese use code block button below posting area for posting code snippets.

Regards,
Sandip.

GeneralRe: Custom Message From Child Dialog Pin
zakkas24839-Feb-09 20:18
zakkas24839-Feb-09 20:18 
GeneralRe: Custom Message From Child Dialog Pin
SandipG 9-Feb-09 20:32
SandipG 9-Feb-09 20:32 
AnswerRe: Custom Message From Child Dialog Pin
Sarath C9-Feb-09 20:17
Sarath C9-Feb-09 20:17 
GeneralRe: Custom Message From Child Dialog Pin
zakkas24839-Feb-09 20:44
zakkas24839-Feb-09 20:44 
GeneralRe: Custom Message From Child Dialog Pin
SandipG 9-Feb-09 21:13
SandipG 9-Feb-09 21:13 
GeneralRe: Custom Message From Child Dialog Pin
zakkas24839-Feb-09 21:36
zakkas24839-Feb-09 21:36 
GeneralRe: Custom Message From Child Dialog Pin
Sarath C9-Feb-09 21:19
Sarath C9-Feb-09 21:19 
GeneralRe: Custom Message From Child Dialog Pin
zakkas24839-Feb-09 21:30
zakkas24839-Feb-09 21:30 
GeneralRe: Custom Message From Child Dialog Pin
zakkas24839-Feb-09 21:39
zakkas24839-Feb-09 21:39 
GeneralRe: Custom Message From Child Dialog Pin
Sarath C9-Feb-09 23:21
Sarath C9-Feb-09 23:21 

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.