Click here to Skip to main content
15,916,835 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralHelp Needed for getting record from database Pin
Y_Kaushik19-Dec-07 17:53
Y_Kaushik19-Dec-07 17:53 
GeneralRe: Help Needed for getting record from database Pin
Roger Broomfield19-Dec-07 18:57
Roger Broomfield19-Dec-07 18:57 
GeneralRe: Help Needed for getting record from database Pin
Y_Kaushik19-Dec-07 19:22
Y_Kaushik19-Dec-07 19:22 
GeneralRe: Help Needed for getting record from database Pin
Roger Broomfield19-Dec-07 19:41
Roger Broomfield19-Dec-07 19:41 
GeneralRe: Help Needed for getting record from database Pin
Y_Kaushik19-Dec-07 19:53
Y_Kaushik19-Dec-07 19:53 
GeneralRe: Help Needed for getting record from database Pin
Y_Kaushik19-Dec-07 20:01
Y_Kaushik19-Dec-07 20:01 
GeneralRe: Help Needed for getting record from database Pin
Y_Kaushik19-Dec-07 20:36
Y_Kaushik19-Dec-07 20:36 
QuestionNeed help with restricting window movement to the screen... Pin
demxine19-Dec-07 16:35
demxine19-Dec-07 16:35 
GeneralRe: Need help with restricting window movement to the screen... Pin
Maxwell Chen19-Dec-07 16:45
Maxwell Chen19-Dec-07 16:45 
QuestionRe: Need help with restricting window movement to the screen... [modified] Pin
demxine19-Dec-07 19:47
demxine19-Dec-07 19:47 
GeneralFake Memory Leak!! Pin
Lea Hayes19-Dec-07 16:06
Lea Hayes19-Dec-07 16:06 
GeneralRe: Fake Memory Leak!! [modified] Pin
Maxwell Chen19-Dec-07 16:34
Maxwell Chen19-Dec-07 16:34 
GeneralRe: Fake Memory Leak!! Pin
Lea Hayes19-Dec-07 21:14
Lea Hayes19-Dec-07 21:14 
GeneralRe: Fake Memory Leak!! Pin
Roger Broomfield19-Dec-07 17:09
Roger Broomfield19-Dec-07 17:09 
GeneralRe: Fake Memory Leak!! Pin
Lea Hayes19-Dec-07 22:02
Lea Hayes19-Dec-07 22:02 
GeneralDestroy/Close the window Pin
CodingLover19-Dec-07 14:21
CodingLover19-Dec-07 14:21 
GeneralRe: Destroy/Close the window Pin
CodingLover19-Dec-07 17:54
CodingLover19-Dec-07 17:54 
GeneralRe: Destroy/Close the window Pin
Mark Salsbery20-Dec-07 6:01
Mark Salsbery20-Dec-07 6:01 
GeneralRe: Destroy/Close the window Pin
CodingLover31-Dec-07 17:41
CodingLover31-Dec-07 17:41 
GeneralRe: Destroy/Close the window Pin
Mark Salsbery2-Jan-08 7:58
Mark Salsbery2-Jan-08 7:58 
QuestionHow to know Project type Pin
s196675m19-Dec-07 14:00
s196675m19-Dec-07 14:00 
AnswerRe: How to know Project type Pin
Hamid_RT19-Dec-07 18:06
Hamid_RT19-Dec-07 18:06 
Generalgdiplusimaging.h error Pin
Anthony Appleyard19-Dec-07 11:54
Anthony Appleyard19-Dec-07 11:54 
GeneralRe: gdiplusimaging.h error Pin
Mark Salsbery20-Dec-07 6:38
Mark Salsbery20-Dec-07 6:38 
Questionoperator << inherited? Pin
Budric B.19-Dec-07 11:48
Budric B.19-Dec-07 11:48 
Hi,
I was wondering if the << operator is inherited? I can't get the following to work:
class A
{
public:
	A& operator << (double & arg)
	{
		return *this;
	}
};
class B : public A
{
public:
	B & operator<<(int & arg)
	{
		return *this;
	}
};
...
B test;
test << 5.0;

with the error that no operator that takes double as argument.

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.