views:

46

answers:

1

i developed to send sms from computer to mobile using c#.net and ms.access. when i send more then 100 msg my system become slow and i got low virtual memory and system is hang. so i have to restart the system. i couldnot run the other application also bcz of slow.

A: 

There must be a COM object that you're not properly disposing.

Mikhail Orlov
Are you a clairvoyant? Out of memory basically only suggests that a memory allocation failed.
0xA3
@divo: or that too much memory is allocated and you've forgot to dispose objects (some objects needs to be disposed in order for the garbage collector to do its thing)
Spoike