Click here to Skip to main content
15,918,471 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Silly question about repaint Pin
doctorpi2-Jun-03 7:00
doctorpi2-Jun-03 7:00 
GeneralRe: Silly question about repaint Pin
David Crow2-Jun-03 7:02
David Crow2-Jun-03 7:02 
GeneralRe: Silly question about repaint Pin
doctorpi2-Jun-03 7:09
doctorpi2-Jun-03 7:09 
GeneralRe: Silly question about repaint Pin
David Crow2-Jun-03 7:19
David Crow2-Jun-03 7:19 
GeneralCode to find cameras and scanners Pin
jleno2-Jun-03 5:55
jleno2-Jun-03 5:55 
GeneralRe: Code to find cameras and scanners Pin
Ryan_Roberts2-Jun-03 6:15
Ryan_Roberts2-Jun-03 6:15 
GeneralRe: Code to find cameras and scanners Pin
Andrew Walker2-Jun-03 13:42
Andrew Walker2-Jun-03 13:42 
GeneralCPropertySheet Pin
K. Shaffer2-Jun-03 5:54
K. Shaffer2-Jun-03 5:54 
GeneralRe: CPropertySheet Pin
Joan M2-Jun-03 6:02
professionalJoan M2-Jun-03 6:02 
GeneralRe: CPropertySheet Pin
K. Shaffer2-Jun-03 6:12
K. Shaffer2-Jun-03 6:12 
GeneralRe: CPropertySheet Pin
Joan M2-Jun-03 6:14
professionalJoan M2-Jun-03 6:14 
GeneralVisual Studio 6 IDE Pin
73Zeppelin2-Jun-03 5:46
73Zeppelin2-Jun-03 5:46 
GeneralRe: Visual Studio 6 IDE Pin
Roger Allen3-Jun-03 2:47
Roger Allen3-Jun-03 2:47 
GeneralRe: Visual Studio 6 IDE Pin
73Zeppelin3-Jun-03 14:56
73Zeppelin3-Jun-03 14:56 
Generalmissing storage class or type identifier Pin
mr20032-Jun-03 5:24
mr20032-Jun-03 5:24 
GeneralRe: missing storage class or type identifier Pin
Joaquín M López Muñoz2-Jun-03 5:26
Joaquín M López Muñoz2-Jun-03 5:26 
GeneralRe: missing storage class or type identifier Pin
mr20032-Jun-03 6:49
mr20032-Jun-03 6:49 
GeneralJumping child windows during scroll Pin
pankajdaga2-Jun-03 5:21
pankajdaga2-Jun-03 5:21 
GeneralRe: Jumping child windows during scroll Pin
basementman2-Jun-03 7:35
basementman2-Jun-03 7:35 
GeneralRe: Jumping child windows during scroll Pin
Roger Allen3-Jun-03 2:55
Roger Allen3-Jun-03 2:55 
GeneralMFC MDI with an edit box on toolbar Pin
mahoni_5012-Jun-03 5:19
mahoni_5012-Jun-03 5:19 
GeneralDifference in VC++ 6.0 and C++.NET Pin
mr20032-Jun-03 4:48
mr20032-Jun-03 4:48 
GeneralRe: Difference in VC++ 6.0 and C++.NET Pin
Navin2-Jun-03 5:11
Navin2-Jun-03 5:11 
Most of VC.NET is backwards compatible with VC 6.0.

However, they have tried to make it more standards-compliant. You will get warnings about some code that is non-standard and deprecated. For example, they deprecate the use of "old" IOStreams. So if you have code that does this:

#include <iostream.h>

...
cout << "Hey there!";


You will get a warning. You should replace it with the "new" IOStream headers:
#include <iostream>

...
std::cout << "Hey there!";


Also, it is possible (via the Preferences dialog) to force "for" loops to conform to the C++ standard (finally!), for example, you can get this standards-compliant code to compile (in VC 6 it would not):

for(int i = 0; i < somenum; i++)
...

for(int i = 0; i < someothernum; i++)
...




"When a man sits with a pretty girl for an hour, it seems like a minute. But let him sit on a hot stove for a minute and it's longer than any hour. That's relativity." - Albert Einstein
GeneralXP explorer crash Pin
Navin2-Jun-03 4:46
Navin2-Jun-03 4:46 
GeneralRe: XP explorer crash Pin
Chris Richardson2-Jun-03 9:20
Chris Richardson2-Jun-03 9:20 

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.