Click here to Skip to main content
15,887,683 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: RTF file Pin
CodingLover11-Dec-07 22:20
CodingLover11-Dec-07 22:20 
GeneralRe: RTF file Pin
CPallini11-Dec-07 22:27
mveCPallini11-Dec-07 22:27 
GeneralRe: RTF file Pin
CodingLover11-Dec-07 22:37
CodingLover11-Dec-07 22:37 
Question<b>voice over ip between 2 hosts</b> [modified] Pin
Member 380822011-Dec-07 0:27
Member 380822011-Dec-07 0:27 
GeneralRe: voice over ip between 2 hosts Pin
Nelek11-Dec-07 1:29
protectorNelek11-Dec-07 1:29 
GeneralRe: voice over ip between 2 hosts Pin
JudyL_MD11-Dec-07 3:21
JudyL_MD11-Dec-07 3:21 
QuestionI need help in initialization list/constructor in abstraction Pin
taly11-Dec-07 0:23
taly11-Dec-07 0:23 
GeneralRe: I need help in initialization list/constructor in abstraction Pin
CPallini11-Dec-07 0:54
mveCPallini11-Dec-07 0:54 
You simply cannot do that.
You have either to provide a default constructor for class CMyCloth (and you've lost the 'per instance members initialization feature')
or a compliant (to class CMyCloth's one) constructor for CHighTechCloth class, for instance:
class CHighTechCloth:public CMyCloth 
{
public:
  CHighTechCloth(EColor color,
                 ESize size,
                 EStatus status,
                 EType type,
                 EQuality quality): 
                 CMyCloth( color, size, status, type, quality)
                 {}
...
}


BTW compiler error messages usually give meaningful hints.

Smile | :)

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.


QuestionRe: I need help in initialization list/constructor in abstraction Pin
taly11-Dec-07 1:20
taly11-Dec-07 1:20 
GeneralRe: I need help in initialization list/constructor in abstraction Pin
CPallini11-Dec-07 1:47
mveCPallini11-Dec-07 1:47 
QuestionHow to use more ocx in a dialog....... Pin
vineet p singh10-Dec-07 23:29
sussvineet p singh10-Dec-07 23:29 
GeneralRe: How to use more ocx in a dialog....... Pin
CPallini11-Dec-07 2:13
mveCPallini11-Dec-07 2:13 
Generalwindow text changed event Pin
Giorgi Dalakishvili10-Dec-07 23:21
mentorGiorgi Dalakishvili10-Dec-07 23:21 
GeneralRe: window text changed event Pin
Naveen11-Dec-07 0:56
Naveen11-Dec-07 0:56 
Generalwhile making Unicode Compatible :: error C2065: '_wtof' : undeclared identifier Pin
Krishnatv10-Dec-07 23:18
Krishnatv10-Dec-07 23:18 
GeneralRe: while making Unicode Compatible :: error C2065: '_wtof' : undeclared identifier Pin
Naveen10-Dec-07 23:58
Naveen10-Dec-07 23:58 
GeneralRe: while making Unicode Compatible :: error C2065: '_wtof' : undeclared identifier Pin
CPallini11-Dec-07 0:02
mveCPallini11-Dec-07 0:02 
GeneralRe: while making Unicode Compatible :: error C2065: '_wtof' : undeclared identifier Pin
Naveen11-Dec-07 0:32
Naveen11-Dec-07 0:32 
GeneralRe: while making Unicode Compatible :: error C2065: '_wtof' : undeclared identifier Pin
Krishnatv11-Dec-07 17:10
Krishnatv11-Dec-07 17:10 
GeneralRe: while making Unicode Compatible :: error C2065: '_wtof' : undeclared identifier Pin
CPallini11-Dec-07 21:13
mveCPallini11-Dec-07 21:13 
GeneralRe: while making Unicode Compatible :: error C2065: '_wtof' : undeclared identifier Pin
Krishnatv11-Dec-07 16:49
Krishnatv11-Dec-07 16:49 
QuestionHow to choose all the files in CFileDialog Pin
santhoshv8410-Dec-07 22:57
santhoshv8410-Dec-07 22:57 
AnswerRe: How to choose all the files in CFileDialog Pin
Nelek10-Dec-07 23:47
protectorNelek10-Dec-07 23:47 
AnswerRe: How to choose all the files in CFileDialog Pin
CPallini10-Dec-07 23:59
mveCPallini10-Dec-07 23:59 
GeneralOOP is driving me crazy! Pin
Lord Kixdemp10-Dec-07 22:57
Lord Kixdemp10-Dec-07 22:57 

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.