Click here to Skip to main content
15,867,488 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: doubly linked lsit Pin
Aljaz11110-Apr-09 2:14
Aljaz11110-Apr-09 2:14 
AnswerRe: doubly linked lsit Pin
Divyang Mithaiwala9-Apr-09 23:23
Divyang Mithaiwala9-Apr-09 23:23 
GeneralRe: doubly linked lsit Pin
CPallini9-Apr-09 23:29
mveCPallini9-Apr-09 23:29 
QuestionCannot convert from 'CString' to 'TCHAR []' Pin
PankajB9-Apr-09 22:31
PankajB9-Apr-09 22:31 
AnswerRe: Cannot convert from 'CString' to 'TCHAR []' Pin
PankajB9-Apr-09 23:01
PankajB9-Apr-09 23:01 
GeneralRe: Cannot convert from 'CString' to 'TCHAR []' Pin
CPallini9-Apr-09 23:25
mveCPallini9-Apr-09 23:25 
AnswerRe: Cannot convert from 'CString' to 'TCHAR []' Pin
CPallini9-Apr-09 23:13
mveCPallini9-Apr-09 23:13 
Questionpointer on class Pin
durban29-Apr-09 21:43
durban29-Apr-09 21:43 
MFC, STUDIO 2008, MDI-project

advanced to forward, 2 errors became less:
#pragma once
class СAdderDialog; // after addition this line into file "modeldlg.h" eliminate (remove)only 2 errors
// CMainDlg
class CMainDlg : public CDialog
{
СAdderDialog* m_pModeless5;

CMainDlg::CMainDlg(CWnd* pParent /*=NULL*/)
: CDialog(CMainDlg::IDD, pParent)
, m_pModeless5(NULL)
{
. . . . . . . . . . .

void CMainDlg::OnOK()
{
if (m_pModeless5 == NULL) // OK!
{
m_pModeless5 = new CAdderDialog(this); // error C2440: '=' : cannot convert from 'CAdderDialog *' to 'СAdderDialog *'
if (m_pModeless5->Create() == TRUE) // modeldlg.cpp(67) : error C2027: use of undefined type 'СAdderDialog'
// error C2227: left of '->Create' must point to class/struct/union/generic type
GetDlgItem(IDOK)->EnableWindow(FALSE);
}
else
m_pModeless5->SetActiveWindow(); // error C2027: use of undefined type 'СAdderDialog'
}
QuestionRe: pointer on class Pin
CPallini9-Apr-09 22:28
mveCPallini9-Apr-09 22:28 
QuestionCompare recorded speech (with FFT?) Pin
rwilmink9-Apr-09 21:16
rwilmink9-Apr-09 21:16 
QuestionExternal Hard Disk Drives Pin
Abinash Mohanty9-Apr-09 21:00
Abinash Mohanty9-Apr-09 21:00 
AnswerRe: External Hard Disk Drives Pin
Hamid_RT9-Apr-09 21:07
Hamid_RT9-Apr-09 21:07 
GeneralRe: External Hard Disk Drives Pin
Abinash Mohanty9-Apr-09 23:28
Abinash Mohanty9-Apr-09 23:28 
QuestionRe: External Hard Disk Drives Pin
David Crow10-Apr-09 3:02
David Crow10-Apr-09 3:02 
QuestionMacro, why? Pin
Maxwell Chen9-Apr-09 20:16
Maxwell Chen9-Apr-09 20:16 
QuestionRe: Macro, why? Pin
CPallini9-Apr-09 20:29
mveCPallini9-Apr-09 20:29 
AnswerRe: Macro, why? Pin
Maxwell Chen9-Apr-09 20:32
Maxwell Chen9-Apr-09 20:32 
Questionshow one column extra in CListControl Pin
Davitor9-Apr-09 20:06
Davitor9-Apr-09 20:06 
AnswerRe: show one column extra in CListControl Pin
rwilmink10-Apr-09 2:49
rwilmink10-Apr-09 2:49 
QuestionRe: show one column extra in CListControl Pin
David Crow10-Apr-09 3:03
David Crow10-Apr-09 3:03 
AnswerRe: show one column extra in CListControl Pin
Davitor13-Apr-09 0:26
Davitor13-Apr-09 0:26 
QuestionUnable to View the MDI Static Splitter Pin
narayanagvs9-Apr-09 19:27
narayanagvs9-Apr-09 19:27 
QuestionHow to Add Crystal Report ActiveX Control 4.0 in VC++ ATL Based Program? Pin
savitri9-Apr-09 19:14
savitri9-Apr-09 19:14 
QuestionYahoo Messager system tray online/offline notification Pin
eight9-Apr-09 19:06
eight9-Apr-09 19:06 
AnswerRe: Yahoo Messager system tray online/offline notification Pin
Divyang Mithaiwala9-Apr-09 20:10
Divyang Mithaiwala9-Apr-09 20:10 

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.