by Geekgirl » Thu May 13, 2004 3:11 pm
I agree with brad I also think its a RAM problem.
When the computer runs out of RAM, it uses space on the hard drive to temporarily store data. This is called virtual memory. Accessing files on the hard drive is much slower than accessing files in RAM, but using virtual memory can prevent the computer from running out of temporary storage space and experiencing out -of-memory errors. The space on the hard drive used for virtual memory is called a swap file. In Windows 9x, the swap file is called WIN386.SWP. Whenever the processor requests data that is not in the RAM, a page fault occurs. Whenever a page fault occurs, the virutal memory manager looks on the swap file for the requested data, then moves in into RAM for the processor to access. In some cases, the computer can spend all its time moving data between RAM and the swap file. This process is called thrashing, and the result is a computer that "freezes up" even though there appears to be excessive disk activity.
You can disable the swap file in Windows 9x using the Performance tab in the System Properties dialog box(Control Panel). However by disabling it, you run the risk of not being able to run many applications becoz out-of-memory errors might occur.
Additionally, you can change the swap file as needed. By setting a specific size, you might be setting it too low so that you run out of virtual memory or too high so that it takes up disk space that could be used for other things.
Just thought this info might help.