Click here to Skip to main content
16,008,719 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralNew to VC++ Pin
Venkatraman1-Aug-02 0:14
Venkatraman1-Aug-02 0:14 
GeneralRe: New to VC++ Pin
Ruca1-Aug-02 0:47
Ruca1-Aug-02 0:47 
GeneralRe: New to VC++ Pin
Venkatraman1-Aug-02 1:44
Venkatraman1-Aug-02 1:44 
GeneralRe: New to VC++ Pin
Koundinya1-Aug-02 2:43
Koundinya1-Aug-02 2:43 
QuestionCan anyone explain Pin
suresh_sathya31-Jul-02 22:59
suresh_sathya31-Jul-02 22:59 
AnswerRe: Can anyone explain Pin
Jean-Michel LE FOL1-Aug-02 2:58
Jean-Michel LE FOL1-Aug-02 2:58 
AnswerRe: Can anyone explain Pin
Simon.W1-Aug-02 3:17
Simon.W1-Aug-02 3:17 
Generalwho can tell me what happened in my programe! Pin
seaymx31-Jul-02 22:36
seaymx31-Jul-02 22:36 
I drived a class from CObject;all like this;
class CPerson :public CObject
{
public:
CPerson();
CPerson(CPerson &person);
CPerson & operator =(CPerson person);
CString m_strName;
};

CPerson::CPerson()
{
m_strNmae=_T("");
}
CPerson::CPerson(CPerson &person)
{
m_strName=person.m_strName;
}
CPerson &CPerson::operator =(CPerson &person)
{
m_strName=person.m_strName;
return *this;
}

but erro happed in compling ;the message is:
d:\microsoft visual studio\vc98\mfc\include\afxtempl.h(255) : error C2558: class 'CPerson' : no copy constructor available
d:\microsoft visual studio\vc98\mfc\include\afxtempl.h(1566) : while compiling class-template member function 'class CPerson __thiscall CArray<class CPerson,class CPerson &>::GetAt(int) const'
Error executing cl.exe.


who can tel me where is the erros!



I am Made!
GeneralRe: who can tell me what happened in my programe! Pin
Daniel Lohmann31-Jul-02 22:42
Daniel Lohmann31-Jul-02 22:42 
GeneralRe: who can tell me what happened in my programe! Pin
benjymous31-Jul-02 22:54
benjymous31-Jul-02 22:54 
Generalwho can tell me what happened in my programe! Pin
seaymx31-Jul-02 22:36
seaymx31-Jul-02 22:36 
GeneralRe: who can tell me what happened in my programe! Pin
Roger Allen1-Aug-02 2:46
Roger Allen1-Aug-02 2:46 
QuestionDialogs or views? Pin
Jonathan Hill31-Jul-02 22:30
Jonathan Hill31-Jul-02 22:30 
GeneralI lost my CDRW/DVDRW.... Pin
chen31-Jul-02 22:17
chen31-Jul-02 22:17 
General"Not all of the windows in the workspace could be openend" Pin
ViolaCase31-Jul-02 21:34
ViolaCase31-Jul-02 21:34 
GeneralRe: "Not all of the windows in the workspace could be openend" Pin
Daniel Lohmann31-Jul-02 22:44
Daniel Lohmann31-Jul-02 22:44 
GeneralRe: "Not all of the windows in the workspace could be openend" Pin
ViolaCase1-Aug-02 16:35
ViolaCase1-Aug-02 16:35 
GeneralRe: "Not all of the windows in the workspace could be openend" Pin
Daniel Lohmann1-Aug-02 21:54
Daniel Lohmann1-Aug-02 21:54 
GeneralLarge Icon Display setting in windows. Pin
a3gupta31-Jul-02 20:48
a3gupta31-Jul-02 20:48 
GeneralRe: Large Icon Display setting in windows. Pin
code_cold31-Jul-02 22:20
code_cold31-Jul-02 22:20 
GeneralYALCQ Pin
Chris Losinger31-Jul-02 18:45
professionalChris Losinger31-Jul-02 18:45 
GeneralRe: YALCQ Pin
Nish Nishant31-Jul-02 19:33
sitebuilderNish Nishant31-Jul-02 19:33 
GeneralRe: YALCQ Pin
Chris Losinger31-Jul-02 19:45
professionalChris Losinger31-Jul-02 19:45 
GeneralRe: YALCQ Pin
Shog931-Jul-02 20:02
sitebuilderShog931-Jul-02 20:02 
GeneralRe: YALCQ Pin
Chris Losinger31-Jul-02 20:04
professionalChris Losinger31-Jul-02 20:04 

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.