Click here to Skip to main content
16,015,414 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralVariable issues Pin
Stew30-May-02 11:37
Stew30-May-02 11:37 
GeneralRe: Variable issues Pin
Bill Wilson30-May-02 11:43
Bill Wilson30-May-02 11:43 
GeneralRe: Variable issues Pin
Stew30-May-02 12:01
Stew30-May-02 12:01 
GeneralRe: Variable issues Pin
Bill Wilson30-May-02 12:18
Bill Wilson30-May-02 12:18 
GeneralRe: Variable issues Pin
James R. Twine31-May-02 10:48
James R. Twine31-May-02 10:48 
GeneralCleaning up from Visual Studio 6 Pin
dazinith30-May-02 9:47
dazinith30-May-02 9:47 
GeneralRe: Cleaning up from Visual Studio 6 Pin
Ed Gadziemski30-May-02 11:06
professionalEd Gadziemski30-May-02 11:06 
GeneralRe: Cleaning up from Visual Studio 6 Pin
Jonathan Craig30-May-02 11:56
Jonathan Craig30-May-02 11:56 
I say no.

The
#if !defined(AFX_SCTAX_H__9275F024_08D4_11D6_B612_00A0CC5C3AED__INCLUDED_)
#define AFX_SCTAX_H__9275F024_08D4_11D6_B612_00A0CC5C3AED__INCLUDED_
code is good practice for header files. If you don't like the way it looks you can clean it up a bit
if !defined (_SCTAX_H__INCLUDED_)
#define _SCTAX_H__INCLUDED_
if that makes you happy.

All the //{{AFX...//}}AFX... comments are markers used by the class wizard to added code to your project.

If MFC is going to put this stuff in all the applications you create, why bother tring to delete it all out? I would spend the time writting code instead of deleting comments...

Smile | :)

Jonathan Craig
www.mcw-tech.com
GeneralRe: Cleaning up from Visual Studio 6 Pin
Tomasz Sowinski30-May-02 12:59
Tomasz Sowinski30-May-02 12:59 
GeneralRe: Cleaning up from Visual Studio 6 Pin
dazinith31-May-02 3:20
dazinith31-May-02 3:20 
GeneralRe: Cleaning up from Visual Studio 6 Pin
James R. Twine31-May-02 10:53
James R. Twine31-May-02 10:53 
GeneralRe: Cleaning up from Visual Studio 6 Pin
mocotrah31-Aug-02 3:01
mocotrah31-Aug-02 3:01 
QuestionHow to use Unicode to std::ostrstream Pin
JohnnyG30-May-02 9:26
JohnnyG30-May-02 9:26 
AnswerRe: How to use Unicode to std::ostrstream Pin
Rama Krishna Vavilala30-May-02 9:35
Rama Krishna Vavilala30-May-02 9:35 
GeneralRe: How to use Unicode to std::ostrstream Pin
JohnnyG30-May-02 10:58
JohnnyG30-May-02 10:58 
GeneralRe: How to use Unicode to std::ostrstream Pin
Rama Krishna Vavilala30-May-02 11:04
Rama Krishna Vavilala30-May-02 11:04 
GeneralRe: How to use Unicode to std::ostrstream Pin
JohnnyG31-May-02 3:44
JohnnyG31-May-02 3:44 
GeneralRe: How to use Unicode to std::ostrstream Pin
Rama Krishna Vavilala31-May-02 3:43
Rama Krishna Vavilala31-May-02 3:43 
GeneralRe: How to use Unicode to std::ostrstream Pin
JohnnyG31-May-02 3:54
JohnnyG31-May-02 3:54 
GeneralCurrent time Pin
esapp42030-May-02 8:49
esapp42030-May-02 8:49 
GeneralRe: Current time Pin
Ravi Bhavnani30-May-02 9:18
professionalRavi Bhavnani30-May-02 9:18 
GeneralRe: Current time Pin
Bill Wilson30-May-02 11:56
Bill Wilson30-May-02 11:56 
Generalsetting text inside CHtmlView Pin
Big B30-May-02 8:34
Big B30-May-02 8:34 
GeneralRe: setting text inside CHtmlView Pin
S Fewings30-May-02 20:30
S Fewings30-May-02 20:30 
QuestionUser draw Combobox - MeasureItem doesn't get called!? Pin
30-May-02 6:57
suss30-May-02 6:57 

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.