Why C# app build by vs.net 2003 can resize itself?

  • Thread starter Thread starter Thomas Wang
  • Start date Start date
T

Thomas Wang

It's really funny,take a look at your app build by
vs.net 2003.
I have a app that is 36KB just after been build. But when
I run it by double click it and close it. It's size
expand to 56KB. And then I run it again,it's size shrink
to 36KB,and I close it,well it's size expand to 56KB.
Why? How can it change it's size during runtime?
Well I try the same way using C# Builder. It doesn't
happen.
 
hi,

What does your application do? I created a sample app in vs.net 2003; there
is no issue.

Rak
 
I believe what you are describing is normal Windows behavior. When an
application is minimized to the system tray, memory that is flagged as
discardable can be reclaimed by Windows. This happens with all Windows
apps.
 
Thomas Wang wrote:
|| It's really funny,take a look at your app build by
|| vs.net 2003.
|| I have a app that is 36KB just after been build. But when
|| I run it by double click it and close it. It's size
|| expand to 56KB. And then I run it again,it's size shrink
|| to 36KB,and I close it,well it's size expand to 56KB.
|| Why? How can it change it's size during runtime?
|| Well I try the same way using C# Builder. It doesn't
|| happen.

Hmm.... What size are you talking about?

Willy.
 
Back
Top