Click here to Skip to main content
15,921,941 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: a simple VC++ scrolling display Pin
Moak3-Apr-10 4:37
Moak3-Apr-10 4:37 
QuestionMessage Removed Pin
2-Apr-10 22:47
ozmrdn2-Apr-10 22:47 
AnswerRe: 8 puzzle game C,C++ source code Pin
Richard MacCutchan2-Apr-10 22:49
mveRichard MacCutchan2-Apr-10 22:49 
GeneralRe: 8 puzzle game C,C++ source code Pin
ozmrdn2-Apr-10 22:59
ozmrdn2-Apr-10 22:59 
GeneralRe: 8 puzzle game C,C++ source code Pin
Richard MacCutchan2-Apr-10 23:10
mveRichard MacCutchan2-Apr-10 23:10 
GeneralRe: 8 puzzle game C,C++ source code Pin
ozmrdn2-Apr-10 23:14
ozmrdn2-Apr-10 23:14 
GeneralRe: 8 puzzle game C,C++ source code Pin
Richard MacCutchan2-Apr-10 23:23
mveRichard MacCutchan2-Apr-10 23:23 
GeneralRe: 8 puzzle game C,C++ source code Pin
ozmrdn2-Apr-10 23:36
ozmrdn2-Apr-10 23:36 
GeneralRe: 8 puzzle game C,C++ source code Pin
Graham Breach3-Apr-10 3:38
Graham Breach3-Apr-10 3:38 
GeneralRe: 8 puzzle game C,C++ source code Pin
LunaticFringe3-Apr-10 0:30
LunaticFringe3-Apr-10 0:30 
GeneralRe: 8 puzzle game C,C++ source code Pin
Tim Craig3-Apr-10 8:52
Tim Craig3-Apr-10 8:52 
GeneralRe: 8 puzzle game C,C++ source code Pin
Richard MacCutchan3-Apr-10 9:46
mveRichard MacCutchan3-Apr-10 9:46 
GeneralRe: 8 puzzle game C,C++ source code Pin
LunaticFringe3-Apr-10 13:28
LunaticFringe3-Apr-10 13:28 
QuestionHow to export and import IE's favorates? Pin
Aric Wang2-Apr-10 22:04
Aric Wang2-Apr-10 22:04 
AnswerRe: How to export and import IE's favorates? Pin
Tim Craig3-Apr-10 8:57
Tim Craig3-Apr-10 8:57 
GeneralRe: How to export and import IE's favorates? Pin
Aric Wang4-Apr-10 0:43
Aric Wang4-Apr-10 0:43 
GeneralRe: How to export and import IE's favorates? Pin
Aric Wang4-Apr-10 0:44
Aric Wang4-Apr-10 0:44 
Questionmshflexgrid Pin
Member 5903102-Apr-10 21:27
Member 5903102-Apr-10 21:27 
AnswerRe: mshflexgrid Pin
Richard MacCutchan2-Apr-10 23:20
mveRichard MacCutchan2-Apr-10 23:20 
QuestionModeless Dialog Pin
rjkg2-Apr-10 21:25
rjkg2-Apr-10 21:25 
AnswerRe: Modeless Dialog Pin
Code-o-mat2-Apr-10 23:20
Code-o-mat2-Apr-10 23:20 
GeneralRe: Modeless Dialog Pin
rjkg3-Apr-10 0:14
rjkg3-Apr-10 0:14 
GeneralRe: Modeless Dialog Pin
Code-o-mat3-Apr-10 4:32
Code-o-mat3-Apr-10 4:32 
GeneralRe: Modeless Dialog Pin
Adam Roderick J3-Apr-10 5:26
Adam Roderick J3-Apr-10 5:26 
QuestionC++ syntax: any idea to avoid overwriting functions of base class? Pin
includeh102-Apr-10 20:13
includeh102-Apr-10 20:13 
Here is an example:
class AA
{
public:
	int GetTest(int i)	{return 1;}
};

class BB:public AA
{
public:
	int GetTest(char*ppp)	{return 1;}

	void MyTest()
	{
		GetTest(3);//error line
	}
};

I hope function GetTest(int) of base-class AA still can be used in sub-class BB as described in error line above.

any idea or it is impossible?

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.