Click here to Skip to main content
15,886,006 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionEnableShellOpen Pin
Bram van Kampen12-Jul-08 13:22
Bram van Kampen12-Jul-08 13:22 
AnswerRe: EnableShellOpen Pin
David Crow12-Jul-08 16:45
David Crow12-Jul-08 16:45 
GeneralRe: EnableShellOpen Pin
Bram van Kampen12-Jul-08 17:02
Bram van Kampen12-Jul-08 17:02 
AnswerRe: EnableShellOpen Pin
Mark Salsbery13-Jul-08 16:58
Mark Salsbery13-Jul-08 16:58 
QuestionMaking a dialog box a child of a view Pin
Mike Hankey12-Jul-08 12:54
mveMike Hankey12-Jul-08 12:54 
AnswerRe: Making a dialog box a child of a view Pin
David Crow12-Jul-08 13:37
David Crow12-Jul-08 13:37 
GeneralRe: Making a dialog box a child of a view Pin
Mike Hankey12-Jul-08 14:46
mveMike Hankey12-Jul-08 14:46 
GeneralRe: Making a dialog box a child of a view Pin
bolivar12312-Jul-08 15:15
bolivar12312-Jul-08 15:15 
You need to call Create with the pointer created by new.

Try this:

CCeDBTestView::CCeDBTestView()
{    
   poutputDlg = new COutputDlg;    
   if (poutputDlg != NULL)
   {
      if (poutputDlg->Create(COutputDlg::IDD,this))
          poutputDlg->ShowWindow(SW_SHOW);
   }
   else
      AfxMessageBox("Error creating OutputDlg!");
}

GeneralRe: Making a dialog box a child of a view Pin
Mike Hankey12-Jul-08 15:29
mveMike Hankey12-Jul-08 15:29 
GeneralRe: Making a dialog box a child of a view Pin
bolivar12312-Jul-08 16:13
bolivar12312-Jul-08 16:13 
GeneralRe: Making a dialog box a child of a view Pin
Mike Hankey12-Jul-08 16:27
mveMike Hankey12-Jul-08 16:27 
GeneralRe: Making a dialog box a child of a view Pin
bolivar12312-Jul-08 16:52
bolivar12312-Jul-08 16:52 
GeneralRe: Making a dialog box a child of a view Pin
Mike Hankey12-Jul-08 17:10
mveMike Hankey12-Jul-08 17:10 
GeneralRe: Making a dialog box a child of a view Pin
David Crow12-Jul-08 16:42
David Crow12-Jul-08 16:42 
QuestionHow to tokenize a string Pin
Nandu_77b12-Jul-08 10:37
Nandu_77b12-Jul-08 10:37 
AnswerRe: How to tokenize a string Pin
Saurabh.Garg12-Jul-08 19:41
Saurabh.Garg12-Jul-08 19:41 
AnswerRe: How to tokenize a string Pin
Ștefan-Mihai MOGA12-Jul-08 20:44
professionalȘtefan-Mihai MOGA12-Jul-08 20:44 
Questionhow to find a word in a string from the end? Pin
Nandu_77b12-Jul-08 8:57
Nandu_77b12-Jul-08 8:57 
AnswerRe: how to find a word in a string from the end? Pin
Luc Pattyn12-Jul-08 9:06
sitebuilderLuc Pattyn12-Jul-08 9:06 
QuestionRe: how to find a word in a string from the end? Pin
Nandu_77b12-Jul-08 9:16
Nandu_77b12-Jul-08 9:16 
AnswerRe: how to find a word in a string from the end? Pin
Luc Pattyn12-Jul-08 9:27
sitebuilderLuc Pattyn12-Jul-08 9:27 
QuestionRe: how to find a word in a string from the end? Pin
Nandu_77b12-Jul-08 10:30
Nandu_77b12-Jul-08 10:30 
AnswerRe: how to find a word in a string from the end? Pin
Bram van Kampen12-Jul-08 13:41
Bram van Kampen12-Jul-08 13:41 
QuestionConverting CString to const char* [modified] -Solved again Pin
Marc Clifton12-Jul-08 6:02
mvaMarc Clifton12-Jul-08 6:02 
AnswerRe: Converting CString to const char* [modified] -Solved again Pin
Mark Salsbery12-Jul-08 8:11
Mark Salsbery12-Jul-08 8:11 

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.