Click here to Skip to main content
16,009,156 members
Home / Discussions / C#
   

C#

 
GeneralRe: Custom cursor as resource Pin
[Marc]27-Jul-05 8:21
[Marc]27-Jul-05 8:21 
GeneralRe: Custom cursor as resource Pin
Will L Pittenger27-Jul-05 10:02
Will L Pittenger27-Jul-05 10:02 
GeneralRe: Custom cursor as resource Pin
[Marc]27-Jul-05 10:50
[Marc]27-Jul-05 10:50 
GeneralRe: Custom cursor as resource Pin
Will L Pittenger27-Jul-05 17:44
Will L Pittenger27-Jul-05 17:44 
GeneralRe: Custom cursor as resource Pin
[Marc]27-Jul-05 20:12
[Marc]27-Jul-05 20:12 
GeneralMemory Leak Pin
dbetting26-Jul-05 6:06
dbetting26-Jul-05 6:06 
GeneralRe: Memory Leak Pin
Steve Maier26-Jul-05 7:18
professionalSteve Maier26-Jul-05 7:18 
GeneralRe: Memory Leak Pin
S. Senthil Kumar26-Jul-05 7:43
S. Senthil Kumar26-Jul-05 7:43 
Where did you see your memory consumption? In the Task Manager?

It's a bad idea to use Task Manager to find the memory used by managed applications. Task Manager reports the total memory consumed by an application. For managed applications, the Garbage Collector manages the heap and it acquires and releases memory from the OS whenever it wants to. In your case, it decided not to release it back, but it eventually will. You can use this[^] to peer into your GC heap, if you're really sure it never releases it back, even when the system runs out of virtual memory.

Or you can use perfmon, with # Bytes in all heaps.

When you minimize your application, all you are doing is minimizing the working set of your process, ie, the pages that are currently in physical memory for the process. It doesn't mean that the application is now consuming lesser memory. If you look into the VM Size column, you'll see that it doesn't change when you minimize or maximize your application.

Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
GeneralRe: Memory Leak [EDITED] Pin
Dave Kreskowiak26-Jul-05 10:14
mveDave Kreskowiak26-Jul-05 10:14 
GeneralRe: Memory Leak [EDITED] Pin
Dan Neely27-Jul-05 2:52
Dan Neely27-Jul-05 2:52 
GeneralRe: Memory Leak [EDITED] Pin
Dave Kreskowiak27-Jul-05 6:33
mveDave Kreskowiak27-Jul-05 6:33 
QuestionHow to Convert Microsoft Excel sheet data into XML data Pin
dsrao26-Jul-05 5:58
dsrao26-Jul-05 5:58 
AnswerRe: How to Convert Microsoft Excel sheet data into XML data Pin
Dan Neely26-Jul-05 6:51
Dan Neely26-Jul-05 6:51 
GeneralPasing messages in remoting Pin
machocr26-Jul-05 5:25
machocr26-Jul-05 5:25 
QuestionHow to serialize/deserialize tree-like object? Pin
soniko26-Jul-05 5:13
soniko26-Jul-05 5:13 
GeneralDataGrid easy question Pin
zaboboa26-Jul-05 4:40
zaboboa26-Jul-05 4:40 
GeneralNon-Standard port configuration for SmtpMail Pin
WetRivrRat26-Jul-05 4:35
WetRivrRat26-Jul-05 4:35 
GeneralRe: Non-Standard port configuration for SmtpMail Pin
S. Senthil Kumar26-Jul-05 5:13
S. Senthil Kumar26-Jul-05 5:13 
GeneralRe: Non-Standard port configuration for SmtpMail Pin
WetRivrRat26-Jul-05 5:48
WetRivrRat26-Jul-05 5:48 
GeneralRe: Non-Standard port configuration for SmtpMail Pin
S. Senthil Kumar26-Jul-05 6:35
S. Senthil Kumar26-Jul-05 6:35 
GeneralRe: Non-Standard port configuration for SmtpMail Pin
S. Senthil Kumar26-Jul-05 6:36
S. Senthil Kumar26-Jul-05 6:36 
GeneralRe: Non-Standard port configuration for SmtpMail Pin
WetRivrRat26-Jul-05 7:28
WetRivrRat26-Jul-05 7:28 
GeneralRe: Non-Standard port configuration for SmtpMail Pin
S. Senthil Kumar26-Jul-05 7:46
S. Senthil Kumar26-Jul-05 7:46 
GeneralRe: Non-Standard port configuration for SmtpMail Pin
WetRivrRat26-Jul-05 8:02
WetRivrRat26-Jul-05 8:02 
QuestionSmtpMail without smtp installed??? Pin
WetRivrRat26-Jul-05 4:33
WetRivrRat26-Jul-05 4:33 

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.