User WaxEagle - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:12:56Z http://stackoverflow.com/feeds/user/25582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/175454/loops-and-garbage-collection 3 Loops and Garbage Collection WaxEagle 2008-10-06T18:02:49Z 2009-07-21T18:03:28Z <p>I am working on a web application and I have run into the following situation.</p> <pre><code>Dim a as Object Dim i as Integer = 0 Try For i=1 to 5 a = new Object() 'Do stuff ' a = Nothing Next Catch Finally a = Nothing End Try </code></pre> <p>Do i need to do the a=Nothing in the loop or will the garbage collector clean a up?</p> http://stackoverflow.com/questions/192080/firefox-links-to-local-or-network-pages-do-not-work/192165#192165 0 Answer by WaxEagle for Firefox Links to local or network pages do not work WaxEagle 2008-10-10T16:32:26Z 2008-10-10T16:32:26Z <p>shouldn't you really store the pages in your application directory and reference them this way. <a href="http://SITENAME/Server/scanner/XYZ.pdf" rel="nofollow">http://SITENAME/Server/scanner/XYZ.pdf</a>.</p> <p>We do something similar with files stored all in one directory and just store the file name. we then create the link using the known folder name and append the file name. this works quite well. </p> <p>Finally firefox is a lot more anal about the directions of the slashes in file names as well. Make sure they are all '/' rather than '\'. </p> <p>Hope this helps.</p> http://stackoverflow.com/questions/184721/how-do-i-display-a-large-pdf-in-a-c-application/184741#184741 0 Answer by WaxEagle for How do I display a large pdf in a c# application? WaxEagle 2008-10-08T20:29:02Z 2008-10-08T20:29:02Z <p>Three suggestions. </p> <p>the first would be to break it and load a page at a time like some online books do. This is a bit annoying but would save you the loading time. I think ItextSharp has some functionality to do this.</p> <p>Second try compression. again itextsharp has tools that allow for this</p> <p>My third suggestion would be to check out <a href="http://stackoverflow.com/questions/182112/funny-loading-statements-to-keep-users-amused">This thread</a>. choose a few nerdy loading phrases and use an animated gif to distract your client from the long loading time. Obviously this is a last resort, but could useful.</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182478#182478 58 Answer by WaxEagle for What are some funny loading statements to keep users amused? WaxEagle 2008-10-08T12:26:29Z 2008-10-08T13:13:41Z <p>Time is an illusion. Loading time doubly so.</p> http://stackoverflow.com/questions/177950/book-recommendations-c-for-php-programmers/178297#178297 1 Answer by WaxEagle for Book recommendations: C for PHP programmers WaxEagle 2008-10-07T12:55:43Z 2008-10-07T13:41:20Z <p>I would also suggest <a href="http://rads.stackoverflow.com/amzn/click/0673999866" rel="nofollow">Pointers on C</a> By Kenneth Reek. </p> <p>Its a little bit expensive but was invaluable to me in the courses that I took on the C language. Making the jump from an OO language to a structured language like C should be a breeze. The hardest thing would probably be pointers. Reek covers pointers from the very beginning and emphasizes through the whole book making this a great book for people who know how to program but want to get the most out of their C experience.</p> http://stackoverflow.com/questions/192080/firefox-links-to-local-or-network-pages-do-not-work/192165#192165 Comment by WaxEagle on Firefox Links to local or network pages do not work WaxEagle 2008-10-10T17:41:40Z 2008-10-10T17:41:40Z can you reference the server by IP address? if you have the access to the server you could make the folder the files are stored in a website in IIS and access them by the server's IP address. http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182478#182478 Comment by WaxEagle on What are some funny loading statements to keep users amused? WaxEagle 2008-10-08T13:14:24Z 2008-10-08T13:14:24Z fixed it. I couldn't remember which one it was. blasted English language.