Click here to Skip to main content
15,925,255 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How can i make "make File" from VS 2005? Pin
bankey101022-Jul-09 20:26
bankey101022-Jul-09 20:26 
GeneralRe: How can i make "make File" from VS 2005? Pin
Stuart Dootson22-Jul-09 21:38
professionalStuart Dootson22-Jul-09 21:38 
AnswerRe: How can i make "make File" from VS 2005? Pin
_AnsHUMAN_ 22-Jul-09 22:34
_AnsHUMAN_ 22-Jul-09 22:34 
QuestionHiding Dialogs Pin
002comp22-Jul-09 19:31
002comp22-Jul-09 19:31 
AnswerRe: Hiding Dialogs Pin
chandu00422-Jul-09 19:37
chandu00422-Jul-09 19:37 
GeneralRe: Hiding Dialogs Pin
002comp22-Jul-09 19:40
002comp22-Jul-09 19:40 
GeneralRe: Hiding Dialogs Pin
chandu00422-Jul-09 19:44
chandu00422-Jul-09 19:44 
GeneralRe: Hiding Dialogs Pin
002comp22-Jul-09 19:46
002comp22-Jul-09 19:46 
GeneralRe: Hiding Dialogs Pin
chandu00422-Jul-09 19:48
chandu00422-Jul-09 19:48 
GeneralRe: Hiding Dialogs Pin
002comp22-Jul-09 19:54
002comp22-Jul-09 19:54 
AnswerRe: Hiding Dialogs Pin
hanq_3891013022-Jul-09 19:50
hanq_3891013022-Jul-09 19:50 
GeneralRe: Hiding Dialogs Pin
002comp22-Jul-09 19:53
002comp22-Jul-09 19:53 
GeneralRe: Hiding Dialogs Pin
hanq_3891013022-Jul-09 19:56
hanq_3891013022-Jul-09 19:56 
GeneralRe: Hiding Dialogs Pin
002comp22-Jul-09 19:58
002comp22-Jul-09 19:58 
AnswerRe: Hiding Dialogs Pin
002comp22-Jul-09 21:28
002comp22-Jul-09 21:28 
GeneralRe: Hiding Dialogs Pin
chandu00422-Jul-09 22:19
chandu00422-Jul-09 22:19 
QuestionAbout windows update using wuapi Pin
hanq_3891013022-Jul-09 19:24
hanq_3891013022-Jul-09 19:24 
QuestionWhich is faster comparision of string or comaprision of enums ? Pin
Dharmendra Bhargava22-Jul-09 19:22
Dharmendra Bhargava22-Jul-09 19:22 
AnswerRe: Which is faster comparision of string or comaprision of enums ? Pin
hanq_3891013022-Jul-09 19:32
hanq_3891013022-Jul-09 19:32 
AnswerRe: Which is faster comparision of string or comaprision of enums ? Pin
Stephen Hewitt22-Jul-09 19:33
Stephen Hewitt22-Jul-09 19:33 
QuestionConsuming C# webservice in a C++ app Pin
vipin_nvk22-Jul-09 19:05
vipin_nvk22-Jul-09 19:05 
AnswerRe: Consuming C# webservice in a C++ app Pin
Stuart Dootson22-Jul-09 19:42
professionalStuart Dootson22-Jul-09 19:42 
QuestionRebuild Solution Takes so much time. Pin
Le@rner22-Jul-09 18:35
Le@rner22-Jul-09 18:35 
AnswerRe: Rebuild Solution Takes so much time. Pin
N a v a n e e t h22-Jul-09 18:42
N a v a n e e t h22-Jul-09 18:42 
AnswerRe: Rebuild Solution Takes so much time. Pin
hanq_3891013022-Jul-09 18:54
hanq_3891013022-Jul-09 18:54 
I think you can:

a. Use precompiled header file, put all include files that are used frequently but changed infrequently in it.

b. If possible, include header files in .cpp file, not .h file. For example, if you only use class pointer or reference in .h file, then you can declare this class in .h file, and #include its header file in cpp.

c. If possible, try to reduce dependence between files/classes.

More suggestions could be found on the internet Smile | :)

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.