Memory problem

  • Thread starter Thread starter Ira Siyal
  • Start date Start date
I

Ira Siyal

My VB.NET app runs on the system with following configuration :
Pentium III / 256 Ram / 20 GB H.D
The app is huge, with around 100 classes and forms.
But it takes too much memory, around 60 MB. Due to this my other app do not
work.
Please suggest solution.
 
if you in fact have this huge application, 60MB is not that unusual
depending on what the app is doing.

how is the app architecture structured? do you have one main exe with a ton
of classes and forms/controls? if so then i suggest breaking this up into
one primary exe controller app with several satellite dll
applications...this way you only load the assemblies you need, when you need
them
 
Back
Top