Click here to Skip to main content
16,011,868 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Splitter window headaches Pin
soup20-Mar-02 13:17
soup20-Mar-02 13:17 
GeneralSetting timer in Doc but used in a View Pin
Merle Pittman20-Mar-02 6:58
Merle Pittman20-Mar-02 6:58 
GeneralRe: Setting timer in Doc but used in a View Pin
Mazdak20-Mar-02 7:26
Mazdak20-Mar-02 7:26 
GeneralRe: Setting timer in Doc but used in a View Pin
Merle Pittman20-Mar-02 7:47
Merle Pittman20-Mar-02 7:47 
GeneralRe: Setting timer in Doc but used in a View Pin
Andres Manggini20-Mar-02 8:24
Andres Manggini20-Mar-02 8:24 
GeneralRe: Setting timer in Doc but used in a View Pin
Shog920-Mar-02 8:02
sitebuilderShog920-Mar-02 8:02 
GeneralC2676 Pin
20-Mar-02 6:51
suss20-Mar-02 6:51 
GeneralRe: C2676 Pin
Rickard Andersson2020-Mar-02 7:02
Rickard Andersson2020-Mar-02 7:02 
Compiler Error C2676
binary 'operator' : 'type' does not define this operator or a conversion to a type acceptable to the predefined operator

The specified operator could not be used in its predefined form. To use the operator you must overload it for the apropriate type, or define a conversion to a type for which the operator is defined. If you’ve encountered this error on code which compiled with an earlier version of Visual C++, please read Technote: Improved Conformance to ANSI C++ for more information.

The following is an example of this error:

class C
{
public:
C();
} c;

class D
{
public:
D();
D operator <<( C& );
} d;
void main()
{
d >> c; // error
d << c; // OK, operator << defined
}


--------------------------------------------------------------------------------
Send feedback to MSDN.Look here for MSDN Online resources.

------------------------------------
Rickard Andersson, Suza Computing
ICQ#: 50302279
I'm from the winter country SWEDEN!

------------------------------------
GeneralRe: C2676 Pin
Bill Wilson20-Mar-02 7:05
Bill Wilson20-Mar-02 7:05 
GeneralCOM Port Active X Pin
dlhson20-Mar-02 6:31
dlhson20-Mar-02 6:31 
QuestionChange image saturation...? Pin
Chris Losinger20-Mar-02 6:23
professionalChris Losinger20-Mar-02 6:23 
AnswerRe: Change image saturation...? Pin
Christian Graus20-Mar-02 9:53
protectorChristian Graus20-Mar-02 9:53 
AnswerRe: Change image saturation...? Pin
Joaquín M López Muñoz20-Mar-02 10:50
Joaquín M López Muñoz20-Mar-02 10:50 
GeneralRe: Change image saturation...? Pin
Chris Losinger20-Mar-02 15:08
professionalChris Losinger20-Mar-02 15:08 
Generalcan't create modeless dialog Pin
Hans Ruck20-Mar-02 6:17
Hans Ruck20-Mar-02 6:17 
GeneralRe: can't create modeless dialog Pin
Joaquín M López Muñoz20-Mar-02 9:26
Joaquín M López Muñoz20-Mar-02 9:26 
Generalquick question - need the registry key name which makes application to start at boot - Thanks Pin
20-Mar-02 5:59
suss20-Mar-02 5:59 
GeneralRe: quick question - need the registry key name which makes application to start at boot - Thanks Pin
20-Mar-02 6:15
suss20-Mar-02 6:15 
GeneralRe: quick question - need the registry key name which makes application to start at boot - Thanks Pin
Bill Wilson20-Mar-02 6:56
Bill Wilson20-Mar-02 6:56 
Questionmodem connection RAS or TAPI or ??? Pin
20-Mar-02 5:57
suss20-Mar-02 5:57 
AnswerI'm too Pin
dlhson20-Mar-02 6:07
dlhson20-Mar-02 6:07 
Questionhow to get a process name attached to a given udp port ? Pin
20-Mar-02 5:45
suss20-Mar-02 5:45 
Generala strange debug error Pin
Gérald Mercet20-Mar-02 5:04
Gérald Mercet20-Mar-02 5:04 
GeneralRe: a strange debug error Pin
Joaquín M López Muñoz20-Mar-02 7:34
Joaquín M López Muñoz20-Mar-02 7:34 
GeneralRe: a strange debug error Pin
Gérald Mercet21-Mar-02 3:06
Gérald Mercet21-Mar-02 3:06 

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.