User WaxEagle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T06:12:56Zhttp://stackoverflow.com/feeds/user/25582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/175454/loops-and-garbage-collection3Loops and Garbage CollectionWaxEagle2008-10-06T18:02:49Z2009-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#1921650Answer by WaxEagle for Firefox Links to local or network pages do not workWaxEagle2008-10-10T16:32:26Z2008-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#1847410Answer by WaxEagle for How do I display a large pdf in a c# application?WaxEagle2008-10-08T20:29:02Z2008-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#18247858Answer by WaxEagle for What are some funny loading statements to keep users amused?WaxEagle2008-10-08T12:26:29Z2008-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#1782971Answer by WaxEagle for Book recommendations: C for PHP programmersWaxEagle2008-10-07T12:55:43Z2008-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#192165Comment by WaxEagle on Firefox Links to local or network pages do not workWaxEagle2008-10-10T17:41:40Z2008-10-10T17:41:40Zcan 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#182478Comment by WaxEagle on What are some funny loading statements to keep users amused?WaxEagle2008-10-08T13:14:24Z2008-10-08T13:14:24Zfixed it. I couldn't remember which one it was. blasted English language.