InterviewSolution
| 1. |
Solve : Web Thumbnailer - Not enough storage is available to process command? |
|
Answer» Anyone know of a way to find out where the flaw is in this software. After a short while it complains with error message of "Not enough storage is available to process this command", yet I have 40GB of 160GB HD FREE, and my available Ram is hovering at 500MB of 1GB, running Windows XP Home SP3 on Dual Core Atom CPU on my netbook. Anyone know of a way to find out where the flaw is in this software.Easy. He isn't using the WebBrowser Control correctly. Quote I have tried to contact the programmer to ask about what could cause this, given he was the one who put the error message in his programExcept, he's not. The Error Is From Internet Explorer; the error cascades back to the application and causes it to crash. IE stays running because it "handled" the error (by sending it back to the application) Empty IE's cache; or, increase the allocated size of the cache. The Error itself is a Standard Windows Error (code . Normally, the cache is purged to make ROOM for new entries, but the program makes IE throw new stuff onto the cache so fast that the cache algorithm can't find anything it feels it can safely discard (they are using the Web Browser control, which is designed to be used by a Human, not necessarily controlled by the program, so obviously it's not exactly designed for the case where pages are fetched constantly and fill the cache). By default the cache is 50MB; you can increase this by using Internet Explorer's "Internet Options" dialog, General Tab; "Settings" for "Browsing History" and increasing the "temporary Internet Files" size. you likely get the crash when you start the program up again because Internet Explorer is an Out of Process component; that is, the program itself is using a separate iexplore.exe to work with the web pages, when the application crashes, that executable is now orphaned, but the program "reconnects" to it so to speak when you start it again, creates the control, which subsequently crashes while trying to store data in the cache. End the iexplore process and you should be able to "restart" the application without problems. Thanks BC ... When I stopped the program before it crashed, then went into IE to adjust the settings it greeted me with the fact that the space was already over its size limit and it wanted to adjust itself to 1024MB Going to save new settings and restart application and see if this did the trick...it sure looks like this was the cause. MANY MANY THANKS to sharing with me the likely cause and being extremely knowledgeable with IE and the way this programmer was passing the URLs to the browser!!! That definately fixed it...before it would crash frequently and its chugging away without errors now...at least not until I exceed 1024MB..lol Thanks BC for solving this for me... I should have posted this issue a few weeks back! Cool, good news... just don't go trying to make pictures of thousands upon thousands webpages in one go and you should be fine |
|