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

C / C++ / MFC

 
AnswerRe: how to merge the three dll to one dll?Thanks Pin
SandipG 1-Jun-08 21:26
SandipG 1-Jun-08 21:26 
GeneralRe: how to merge the three dll to one dll?Thanks Pin
wendyyue2-Jun-08 1:05
wendyyue2-Jun-08 1:05 
GeneralRe: how to merge the three dll to one dll?Thanks Pin
SandipG 2-Jun-08 1:22
SandipG 2-Jun-08 1:22 
AnswerRe: how to merge the three dll to one dll?Thanks Pin
Hamid_RT3-Jun-08 1:07
Hamid_RT3-Jun-08 1:07 
QuestionCMemoryState queston,why Total allocations are increasing Pin
jacks07021-Jun-08 21:03
jacks07021-Jun-08 21:03 
AnswerRe: CMemoryState queston,why Total allocations are increasing Pin
SandipG 1-Jun-08 21:25
SandipG 1-Jun-08 21:25 
GeneralRe: CMemoryState queston,why Total allocations are increasing Pin
jacks07021-Jun-08 21:31
jacks07021-Jun-08 21:31 
GeneralRe: CMemoryState queston,why Total allocations are increasing Pin
Mark Salsbery2-Jun-08 6:10
Mark Salsbery2-Jun-08 6:10 
If you use the debugging version of new then you can get file/line number
information that can help you find the line of code making the allocation(s)
that aren't being freed.

Add something like this to the top of all your source files...

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


Mark

Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

Question#using <mscorlib.dll> used why?</mscorlib.dll> Pin
nisha000001-Jun-08 20:55
nisha000001-Jun-08 20:55 
QuestionRe: #using used why? Pin
Rajesh R Subramanian1-Jun-08 21:05
professionalRajesh R Subramanian1-Jun-08 21:05 
AnswerOT Pin
CPallini1-Jun-08 23:34
mveCPallini1-Jun-08 23:34 
GeneralRe: OT Pin
Rajesh R Subramanian1-Jun-08 23:46
professionalRajesh R Subramanian1-Jun-08 23:46 
GeneralSemi OT Pin
Rajesh R Subramanian1-Jun-08 23:49
professionalRajesh R Subramanian1-Jun-08 23:49 
GeneralRe: Semi OT Pin
CPallini1-Jun-08 23:53
mveCPallini1-Jun-08 23:53 
GeneralRe: Semi OT Pin
Rajkumar R2-Jun-08 2:49
Rajkumar R2-Jun-08 2:49 
GeneralRe: Semi OT Pin
CPallini2-Jun-08 7:29
mveCPallini2-Jun-08 7:29 
AnswerRe: #using used why? Pin
Hamid_RT3-Jun-08 1:07
Hamid_RT3-Jun-08 1:07 
QuestionChange Window Color Pin
chetanjoshi91-Jun-08 20:24
chetanjoshi91-Jun-08 20:24 
AnswerRe: Change Window Color Pin
SandipG 1-Jun-08 20:42
SandipG 1-Jun-08 20:42 
AnswerRe: Change Window Color Pin
Hamid_RT3-Jun-08 1:06
Hamid_RT3-Jun-08 1:06 
QuestionXML stream to send data Pin
CodingLover1-Jun-08 20:19
CodingLover1-Jun-08 20:19 
AnswerRe: XML stream to send data Pin
Mark Salsbery2-Jun-08 6:15
Mark Salsbery2-Jun-08 6:15 
AnswerRe: XML stream to send data Pin
Hamid_RT3-Jun-08 1:05
Hamid_RT3-Jun-08 1:05 
QuestionProblem with PeekMessage MFC application Pin
Prasanth M V1-Jun-08 19:38
Prasanth M V1-Jun-08 19:38 
AnswerRe: Problem with PeekMessage MFC application Pin
Mark Salsbery2-Jun-08 6:20
Mark Salsbery2-Jun-08 6: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.