Unallocate memory when exiting application

  • Thread starter Thread starter Thomas VUILLET - PAGE UP
  • Start date Start date
T

Thomas VUILLET - PAGE UP

Hi group !

After exiting my application (VB.NET), I can see in the Control Panel that
there is a lot of memory which is still allocated (about 4000 KBytes). I
only launch the program and quit immediatly.
During the application's loading, I make the following things :
- create 3 datatables
- open 2 text files
- fill the datatables with the content of text files

On the first screen, I have :
- a datagrid with personnalized column styles fill with a dataview
created from a datatable previously filled
- buttons with icons (personnalized control)

When I close the application (in the closing event), I :
- set Nothing to the datatables and the dataview
- call Dispose for the datagrid and for the buttons

Notice : after reading text files, I close the Streamreader by calling Close
method.

I don't see which data are still in memory !

Can you help me ?

Thanks,

Thomas
 
Have you verified that your application is not still running after it
appears to have terminated? Look in Settings->System->Memory->Running
Programs.

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| Reply-To: "Thomas VUILLET - PAGE UP" <[email protected]>
| From: "Thomas VUILLET - PAGE UP" <[email protected]>
| Subject: Unallocate memory when exiting application
| Date: Wed, 10 Sep 2003 13:49:28 +0200
| Lines: 31
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.compactframework
| NNTP-Posting-Host: adijon-107-1-10-215.w81-249.abo.wanadoo.fr
81.249.82.215
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftngp13.phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.framework.compactframework:33222
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
|
| Hi group !
|
| After exiting my application (VB.NET), I can see in the Control Panel that
| there is a lot of memory which is still allocated (about 4000 KBytes). I
| only launch the program and quit immediatly.
| During the application's loading, I make the following things :
| - create 3 datatables
| - open 2 text files
| - fill the datatables with the content of text files
|
| On the first screen, I have :
| - a datagrid with personnalized column styles fill with a dataview
| created from a datatable previously filled
| - buttons with icons (personnalized control)
|
| When I close the application (in the closing event), I :
| - set Nothing to the datatables and the dataview
| - call Dispose for the datagrid and for the buttons
|
| Notice : after reading text files, I close the Streamreader by calling
Close
| method.
|
| I don't see which data are still in memory !
|
| Can you help me ?
|
| Thanks,
|
| Thomas
|
|
|
 
Back
Top