Click here to Skip to main content
15,908,172 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionone subclass two edit control Pin
Max++28-Aug-07 4:19
Max++28-Aug-07 4:19 
AnswerRe: one subclass two edit control Pin
Iain Clarke, Warrior Programmer28-Aug-07 5:28
Iain Clarke, Warrior Programmer28-Aug-07 5:28 
QuestionA Question about OpenCV in facedetect.c to detect photo Pin
pc135528-Aug-07 4:10
pc135528-Aug-07 4:10 
QuestionSystem menu disabling Pin
mnupadhya28-Aug-07 3:22
mnupadhya28-Aug-07 3:22 
AnswerRe: System menu disabling Pin
Jason Teagle28-Aug-07 4:15
Jason Teagle28-Aug-07 4:15 
GeneralRe: System menu disabling Pin
mnupadhya28-Aug-07 18:59
mnupadhya28-Aug-07 18:59 
GeneralRe: System menu disabling Pin
mnupadhya29-Aug-07 23:16
mnupadhya29-Aug-07 23:16 
QuestionC++ class definitions Pin
baerten28-Aug-07 1:52
baerten28-Aug-07 1:52 
Hello everybody,

after resolving a strange error ( error during message queue by setting a pointer )
i put the char *BufferString from a lower place more higher :

from
class MyCEdit
{
public:
MyCEdit(.....);
ccc vvv;
bbb nnn;

protectec:
MessageLoop(.....)

public:
char *Bufferstring;  <<<<<<<<
hhhh jjjj;

protected:
oooo pppp;
rrrrr tttt;

};


to
class MyCEdit
{
public:
MyCEdit(.....);
char *Bufferstring; <<<<<<<<<
ccc vvv;
bbb nnn;

protectec:
MessageLoop(.....)

public:
hhhh jjjj;

protected:
oooo pppp;
rrrrr tttt;

};


Now it works Confused | :confused:

Is it possible that more than one declaration of public or protected blocks makes
internal errors?

I'm really confused, because 6-7 months ago i had a similar problem and i "resolved" it the same way...
AnswerRe: C++ class definitions Pin
Maxwell Chen28-Aug-07 1:54
Maxwell Chen28-Aug-07 1:54 
GeneralRe: C++ class definitions Pin
baerten28-Aug-07 2:18
baerten28-Aug-07 2:18 
AnswerRe: C++ class definitions Pin
David Crow28-Aug-07 2:36
David Crow28-Aug-07 2:36 
GeneralRe: C++ class definitions Pin
baerten28-Aug-07 2:44
baerten28-Aug-07 2:44 
GeneralRe: C++ class definitions Pin
David Crow28-Aug-07 2:48
David Crow28-Aug-07 2:48 
AnswerRe: C++ class definitions Pin
Russell'28-Aug-07 3:06
Russell'28-Aug-07 3:06 
GeneralRe: C++ class definitions Pin
baerten28-Aug-07 3:16
baerten28-Aug-07 3:16 
GeneralRe: C++ class definitions Pin
Russell'28-Aug-07 3:28
Russell'28-Aug-07 3:28 
GeneralRe: C++ class definitions Pin
Maxwell Chen28-Aug-07 4:36
Maxwell Chen28-Aug-07 4:36 
GeneralRe: C++ class definitions Pin
Russell'28-Aug-07 7:16
Russell'28-Aug-07 7:16 
AnswerRe: C++ class definitions Pin
Michael Dunn28-Aug-07 8:04
sitebuilderMichael Dunn28-Aug-07 8:04 
QuestionRedistributing a command-line program made with VC++ 2005? Pin
Maxwell Chen28-Aug-07 1:31
Maxwell Chen28-Aug-07 1:31 
AnswerRe: Redistributing a command-line program made with VC++ 2005? Pin
jhwurmbach28-Aug-07 1:48
jhwurmbach28-Aug-07 1:48 
GeneralRe: Redistributing a command-line program made with VC++ 2005? Pin
Maxwell Chen28-Aug-07 2:03
Maxwell Chen28-Aug-07 2:03 
GeneralRe: Redistributing a command-line program made with VC++ 2005? Pin
jhwurmbach28-Aug-07 2:05
jhwurmbach28-Aug-07 2:05 
QuestionWriting a C++ code to print a file Pin
barun_iit28-Aug-07 1:29
barun_iit28-Aug-07 1:29 
AnswerRe: Writing a C++ code to print a file Pin
Nishad S28-Aug-07 1:39
Nishad S28-Aug-07 1:39 

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.