User Kris Erickson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T00:30:13Z http://stackoverflow.com/feeds/user/3798 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1772083/when-drawing-an-image-system-runtime-interopservices-externalexception-a-generi/1783778#1783778 1 Answer by Kris Erickson for When drawing an image: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI Kris Erickson 2009-11-23T15:19:19Z 2009-11-24T06:07:28Z <p>Your problem is similar to what I thought, but not quite. When you are loading the image, you are loading it from a MemoryStream. You have to keep the stream open for the lifetime of the image, see <a href="http://msdn.microsoft.com/en-us/library/93z9ee4x.aspx" rel="nofollow">MSDN Image.FromStream</a>. </p> <blockquote> <p>You must keep the stream open for the lifetime of the Image.</p> </blockquote> <p>The solution is to make a copy of your image in the FromImage function:</p> <pre><code>private void LoadImage(string filename, ref Image image) { MemoryStream memoryStream = DecryptImageBinary(Settings.Default.ImagePath + filename, _cryptPassword); var tmpImage = Image.FromStream(memoryStream); image = new Bitmap(tmpImage); tmpImage.Dispose(); memoryStream.Close(); } </code></pre> <p>Similar to the dispose problem I mentioned, the image will seem to work and then randomly fail when the underlying stream is garbage collected.</p> http://stackoverflow.com/questions/1057734/tortoisesvn-icons-not-showing-up-under-windows-7/1228918#1228918 16 Answer by Kris Erickson for TortoiseSVN icons not showing up under windows 7 Kris Erickson 2009-08-04T17:41:03Z 2009-11-22T17:51:04Z <p>Windows can only show a limited number of Overlay Icons (<a href="http://tortoisesvn.tigris.org/faq.html#ovlnotshowing" rel="nofollow">15 total, 11 after what windows uses</a>). Programs like Office Groove, Dropbox, Mozy, Carbonite, etc, will hijack a bunch of the 11 possible overlay icons. </p> <p>You can see what overlays are set up, and change them (at your own risk) in the registry here:</p> <pre>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\ShellIconOverlayIdentifiers</pre> <p>If you are using TortoiseCVS (and have nothing else using overlay icons), you will get a couple of TortoiseSVN Icons, and all of your TortoiseCVS icons. This is because the overlay icons are used in alphabetical order. Again, at your own risk (editing the registry may blow up your computer, yada, yada, yada -- and if you are reading stack overflow and using windows and haven't edited the registry, you are a rare beast indeed), feel free to rename them (I suggest putting numbers infront of the ones you want to use). The TortoiseSVN Shell extensions are nicely named so you know what they do, the TortoiseCVS extensions are not. After looking through the source code, I found the pertinent information:</p> <ul> <li><strong>TortoiseCVS0</strong> - <em>In cvs</em></li> <li><strong>TortoiseCVS1</strong> - <em>Not in cvs</em></li> <li><strong>TortoiseCVS3</strong> - <em>Conflicted</em></li> <li><strong>TortoiseCVS4</strong> - <em>In cvs readonly</em></li> <li><strong>TortoiseCVS5</strong> - <em>Ignored</em></li> <li><strong>TortoiseCVS6</strong> - <em>Added</em></li> <li><strong>TortoiseCVS7</strong> - <em>Deleted</em></li> <li><strong>TortoiseCVS8</strong> - <em>Locked</em></li> </ul> http://stackoverflow.com/questions/1772083/when-drawing-an-image-system-runtime-interopservices-externalexception-a-generi/1776269#1776269 1 Answer by Kris Erickson for When drawing an image: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI Kris Erickson 2009-11-21T18:16:57Z 2009-11-21T18:16:57Z <p>Without a little more code there is not enough to properly diagnose here, however, one thing to look at is that you may have disposed on the image your a drawing with at some point earlier and it is only after the garbage collector runs that your code is failing. Are you using cloned images anywhere? One thing I was suprised to learn is that if you do a straight <a href="http://msdn.microsoft.com/en-us/library/system.drawing.image.clone.aspx" rel="nofollow">clone</a> of an image, you are not cloning the underlying bitmap that the image rely's upon, only the image structure, to create a proper copy of an image you have to create a new image:</p> <pre><code>var newImage = new Bitmap(img) </code></pre> <p>as</p> <pre><code>var newImage = oldImg.Clone(); oldImg.Dispose(); ... gr.DrawImage(newImage, new Rectangle(0,0,newImage.Width,newImage.Height); </code></pre> <p>will work for a while, but then fail at some random point...</p> http://stackoverflow.com/questions/1771720/getting-logical-drives/1771731#1771731 7 Answer by Kris Erickson for Getting logical drives Kris Erickson 2009-11-20T16:44:42Z 2009-11-20T16:44:42Z <p>Use DriveInfo to determine if the drive is ready.</p> <pre><code>foreach (var oneDrive in strDrives) { var drive = new DriveInfo(oneDrive) if (drive.IsReady) { // Do something with the drive... } } </code></pre> http://stackoverflow.com/questions/1771695/simple-html-dom-help/1771717#1771717 3 Answer by Kris Erickson for Simple HTML DOM help Kris Erickson 2009-11-20T16:40:39Z 2009-11-20T16:40:39Z <p>You want to put the id (so you can access the value in javascript), as well as a name (if you want to access the value on the server) in the tag you wish to get the value from.</p> <p>e.g.</p> <pre><code>&lt;input type="hidden" name="test" id="test" value="sayantest" /&gt; </code></pre> <p>then your javascript is as simple as:</p> <pre><code>&lt;script type="text/javascript"&gt; var val = document.getElementById('test').value; alert(val); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1703545/dllregisterserver-entry-point-was-not-found/1709513#1709513 2 Answer by Kris Erickson for DllRegisterServer entry point was not found Kris Erickson 2009-11-10T17:01:12Z 2009-11-10T17:01:12Z <p><a href="http://www.dependencywalker.com" rel="nofollow">Dependency Walker</a> will probably be your friend here. You can run it on rscomclNoMsg.dll to find out what kind of a DLL it is, and what dependencies it has.</p> http://stackoverflow.com/questions/1685976/how-can-i-create-an-interface-in-vbnet-with-implicit-implimentations 0 How can I create an interface in VBNet with implicit implimentations Kris Erickson 2009-11-06T07:24:38Z 2009-11-06T09:17:58Z <p>In C# I can create an interface, and when I use the interface the compiler knows that certain interface requirements are fulfilled by the base class. This is probably clearer with an example:</p> <pre><code>interface FormInterface { void Hide(); void Show(); void SetupForm(); } public partial class Form1 : Form , FormInterface { public Form1() { InitializeComponent(); } public void SetupForm() { } } </code></pre> <p>The compiler knows that Hide() and Show() are implimented in Form and the above code compiles just fine. I can't figure out how to do this in VB.Net. When I try:</p> <pre><code>Public Interface FormInterface Sub Hide() Sub Show() Sub SetupForm() End Interface Public Class Form1 Inherits System.Windows.Forms.Form Implements FormInterface Public Sub SetupForm() Implements FormInterface.SetupForm End Sub End Class </code></pre> <p>But the Compiler complains that Form1 must implement 'Sub Hide()' for interface 'FormInterface'. Do I actually have to add</p> <pre><code>Public Sub Hide1() Implements FormInterface.Hide Hide() End Sub </code></pre> <p>On all my forms, or is a better route creating an abstract base class that has SetupForm() (and how do you do that in VB.net)?</p> http://stackoverflow.com/questions/1582243/product-key-registration-visual-basic/1582777#1582777 1 Answer by Kris Erickson for Product key Registration - Visual Basic Kris Erickson 2009-10-17T17:46:00Z 2009-10-17T17:46:00Z <p>Rolling your own Registration and protection program is incredibly difficult, and usually very easy to break. Try looking at some of the inexpensive commercial products that already do this, <a href="http://www.eziriz.com/intellilock.htm" rel="nofollow">intellilock</a> is cheap and I have found to be well featured (if not well supported by the company that produces it, well supported by the community).</p> http://stackoverflow.com/questions/1582592/php-how-to-parse-this-xml/1582771#1582771 1 Answer by Kris Erickson for PHP - How to parse this xml? Kris Erickson 2009-10-17T17:42:28Z 2009-10-17T17:42:28Z <p>If you are using PHP 5, use <a href="http://ca.php.net/manual/en/book.simplexml.php" rel="nofollow">SimpleXML</a>. It is much cleaner, easier to use and faster than DOM. If you using PHP 4, you have to use <a href="http://www.php.net/manual/en/ref.domxml.php" rel="nofollow">DomXML</a> and not <a href="http://www.php.net/manual/en/intro.dom.php" rel="nofollow">Dom</a>.</p> http://stackoverflow.com/questions/1582499/resize-image-gdi-graphics-net/1582757#1582757 0 Answer by Kris Erickson for Resize image gdi+ graphics .net Kris Erickson 2009-10-17T17:37:15Z 2009-10-17T17:37:15Z <p>One thing to look at is blogPhoto and the underlying data going away. Where does it get loaded from? Is it loaded from a stream? Is that stream closed before createSmallerImage? Images loaded from streams where the stream is closed work 95% of the time and only occaisonally throw a generic GDI+ error. </p> http://stackoverflow.com/questions/85569/net-dotnet-wrappers-for-opencv 3 .Net (dotNet) wrappers for OpenCV? Kris Erickson 2008-09-17T17:22:15Z 2009-10-12T03:55:54Z <p>I've seen there are a few of them. <a href="http://code.google.com/p/opencvdotnet/" rel="nofollow">opencvdotnet</a>, <a href="http://www.cs.ru.ac.za/research/groups/SharperCV/" rel="nofollow">SharperCV</a>, <a href="http://sourceforge.net/projects/emgucv" rel="nofollow">EmguCV</a>, <a href="http://www.codeproject.com/KB/cs/Intel_OpenCV.aspx#install" rel="nofollow">One on Code Project</a>. Does anyone have any experience with any of these? I played around with the one on Code Project for a bit, but as soon as I tried to do anything complicated I got some nasty uncatchable exceptions (i.e. Msgbox exceptions). Cross platform (supports Mono) would be best.</p> http://stackoverflow.com/questions/54790/is-it-possible-to-build-msbuild-files-visual-studio-sln-from-the-command-line-i 9 Is it possible to build MSBuild files (visual studio sln) from the command line in Mono? Kris Erickson 2008-09-10T17:36:00Z 2009-10-11T12:34:27Z <p>Is it possible to build Visual Studio solutions without having to fire up MonoDevelop?</p> http://stackoverflow.com/questions/920889/open-source-php-reporting-tool/921312#921312 1 Answer by Kris Erickson for Open source PHP reporting tool Kris Erickson 2009-05-28T15:00:53Z 2009-10-07T14:57:32Z <p>There are tons of reporting libraries, most of which create Xml or Csv. You would have to give more data about what kind of reporting you need for a recommendation. I haven't used <a href="http://openxmldeveloper.org/articles/4606.aspx" rel="nofollow">PHPExcel</a> yet, but it is the first attempt I have seen to actually create Excel documents rather than creating CSV's that will load in Excel. PDF creation is built into PHP with the <a href="http://www.php.net/pdf" rel="nofollow">PDF functions</a>, and is fairly easy to do. </p> http://stackoverflow.com/questions/1460447/visual-studio-change-app-icon-how/1460524#1460524 0 Answer by Kris Erickson for Visual Studio, change app icon, how? Kris Erickson 2009-09-22T14:45:46Z 2009-09-22T14:45:46Z <p>The Icon in tray, and the task bar is based on the Form or Window Icon. The application Icon (the one you see in explorer) is set in the properties.</p> http://stackoverflow.com/questions/1449060/what-is-the-usage-of-pdbs-program-debug-database/1449068#1449068 1 Answer by Kris Erickson for What is the usage of pdb's (Program Debug DataBase) ? Kris Erickson 2009-09-19T17:41:44Z 2009-09-19T17:41:44Z <p>PDB's allow debugging of applications, for examlple when they crash or if you have a minidump. They also allow you to find more detail about errors when outputting exceptions to logging (they will give a more complete stacktrace with line numbers rather than just showing the name of the function where the error occurred).</p> http://stackoverflow.com/questions/1429683/streaming-jpeg-resizer 1 Streaming Jpeg Resizer Kris Erickson 2009-09-15T21:20:13Z 2009-09-16T22:48:25Z <p>Does anyone know of any code that does streaming Jpeg resizing. What I mean by this is reading a chunk of an image (depending on the original source and destination size this would obviously vary), and resizing it, allowing for lower memory consumption when resizing very large jpegs. Obviously this wouldn't work for progressive jpegs (or at least it would become much more complicated), but it should be possible for standard jpegs.</p> http://stackoverflow.com/questions/38295/apply-an-icc-color-profile-to-an-image-in-c-dotnet 1 Apply an ICC Color Profile to an image in C# (Dotnet) Kris Erickson 2008-09-01T19:02:13Z 2009-09-09T00:23:39Z <p>How does one convert an image from one color profile to another (screen to printer, or scanner to screen). In Visual C++ you would use the function in ICM.h, is there a managed way to do this with GDI+?</p> <p>I need to use GDI+, not WPF. I'd prefer to have a managed solution, but if it is not available, I guess PInkvoke will have to suffice.</p> http://stackoverflow.com/questions/1394261/vb6-quitting-while-debugging-with-active-windows-message-hook/1394727#1394727 4 Answer by Kris Erickson for VB6 quitting while debugging with active Windows message hook Kris Erickson 2009-09-08T15:40:26Z 2009-09-08T15:40:26Z <ol> <li>You are going to get crashing (or disappearing VB6) if you initiate a global hook and attempt to Debug in VB6. VB6 is kind of like a simulator, it doesn't exactly duplicate the runtime of a VB6 application and hooking is one of the areas it fails miserably at (though it can't really be blamed if you understand what is going on). For all of the global hooks we use in our applications we check to see if VB6 is running in IDE mode (there are several ways to do this) and if it is, don't run the global hook. If you absolutely have to run the global hook, do not stop the application in the debugger - use debug.print or some other means, but don't stop the application otherwise you will have milliseconds to seconds before it "goes away".</li> <li>Although you should unhook before exiting the application, when the message pump hits the hook and the handle of the application where the hook takes place no longer exists, it is a fairly cheep operation to ignore that hook. Now if you ran the application and exited thousands of times, it would probably build up, but that I think is the least of your concerns.</li> </ol> http://stackoverflow.com/questions/1377251/how-do-i-draw-a-bitmap-with-50-opacity/1379760#1379760 1 Answer by Kris Erickson for How do I Draw a Bitmap with 50% Opacity? Kris Erickson 2009-09-04T14:52:04Z 2009-09-04T14:52:04Z <p>Here is some code that adds an alpha channel to an image. If you want 50% alpha, you would set 128 as the alpha argument. Note this creates a copy of the bitmap...</p> <pre><code> public static Bitmap AddAlpha(Bitmap currentImage, byte alpha) { Bitmap alphaImage; if (currentImage.PixelFormat != PixelFormat.Format32bppArgb) { alphaImage = new Bitmap(currentImage.Width, currentImage.Height, PixelFormat.Format32bppArgb); using (Graphics gr = Graphics.FromImage(tmpImage)) { gr.DrawImage(currentImage, 0, 0, currentImage.Width, currentImage.Height); } } else { alphaImage = new Bitmap(currentImage); } BitmapData bmData = alphaImage.LockBits(new Rectangle(0, 0, alphaImage.Width, alphaImage.Height), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb); const int bytesPerPixel = 4; const int alphaPixel = 3; int stride = bmData.Stride; unsafe { byte* pixel = (byte*)(void*)bmData.Scan0; for (int y = 0; y &lt; currentImage.Height; y++) { int yPos = y * stride; for (int x = 0; x &lt; currentImage.Width; x++) { int pos = yPos + (x * bytesPerPixel); pixel[pos + alphaPixel] = alphaByte; } } } alphaImage.UnlockBits(bmData); return alphaImage; } </code></pre> http://stackoverflow.com/questions/1273428/how-do-i-stop-the-jquery-ui-slider-from-sliding-beyond-the-gutter 0 How do I stop the jquery UI slider from sliding beyond the gutter. Kris Erickson 2009-08-13T17:26:31Z 2009-08-28T18:52:46Z <p>I am using the jquery-ui slider as a sideways scroll bar, and am having issues with the fact the handle slides beyond the end gutter (it can be seen <a href="http://jqueryui.com/demos/slider/" rel="nofollow">here</a> if you slide the slider the farthest to the right). I have tried everything I can think of with CSS to try to get the handle to go no further than the gutter, but to no avail. Any suggestions would be greatly appreciated.</p> <p>To clarify I am adding the following diagram which shows the problem (it is very subtle since the handle is small, however if you create a large handle in CSS, the handle goes <strike>exactly</strike> half its width beyond the gutter).</p> <p><a href="http://jsbin.com/inome/edit" rel="nofollow">Here</a> is a jsbin of the problem. Basically I want the handle to stay within the gutter.</p> <p><img src="http://img268.imageshack.us/img268/124/examplex.png" alt="alt text" /></p> http://stackoverflow.com/questions/1313980/debug-installation-of-activex-control-in-internet-explorer 0 Debug Installation Of ActiveX Control in Internet Explorer... Kris Erickson 2009-08-21T20:06:09Z 2009-08-22T00:54:37Z <p>I have an ActiveX control that runs on a website, where the old version installed fine. Of course it runs and installs perfectly on the development computer. The new version is versioned with a new name and a completely new CLSID. The new version brings up the installation dialog in Vista in Internet Explorer 8 (with the correct Digital Signature, etc) however nothing things to happen upon install. How can I determine exactly what happened after clicking Install (the control is not in the Objects directory, however the old Control is). I remember when initially creating this control that there was a log where there was details about the failed installs, however, for the life of me I cannot remember where that was or find it on the destination computer. This new version installs fine on some computers, but fails to install on some computers (it is not specific to Vista, it installs fine on some Vista machines).</p> http://stackoverflow.com/questions/1313980/debug-installation-of-activex-control-in-internet-explorer/1314804#1314804 0 Answer by Kris Erickson for Debug Installation Of ActiveX Control in Internet Explorer... Kris Erickson 2009-08-22T00:54:37Z 2009-08-22T00:54:37Z <p>Turns out that Visual Basic components built in 64 bit windows silently fail to run on 32 bit operating systems (Vista, XP, Windows 7). Don't know whether it is the VB compiler, the Cab generator, or signtool, but if you build it on 64bit, it will run fine in a 64bit environment but fail to install with no messages in a 32 bit environment. Hopefully this will help someone in the future. Still looking for the log for failed ActiveX installs, however.</p> http://stackoverflow.com/questions/1294666/rules-of-thumb-in-gdi/1306747#1306747 2 Answer by Kris Erickson for Rules of Thumb in GDI+ Kris Erickson 2009-08-20T14:54:57Z 2009-08-20T14:54:57Z <p>GDI Gotchas that have burned me a few times.</p> <ul> <li>Clone doesn't clone() the underlying data clone(Rectangle, PixelFormat) does. So if you dispose of a clone(), the original object becomes unusable. Use new Bitmap() if you want two seperate bitmaps.</li> <li>If you load an image FromFile that file is locked until the bitmap is disposed of (can't even be read).</li> <li>When using DrawImage don't forget to set SmoothingMode, InterpolationMode and PixelOffsetMode or you will be surprised by the low quality of the image.</li> </ul> http://stackoverflow.com/questions/1294513/jquery-fade-in-image-after-image/1294593#1294593 1 Answer by Kris Erickson for jquery: fade in image after image Kris Erickson 2009-08-18T15:21:21Z 2009-08-18T17:06:10Z <p>Just use the load() event on an image. E.g.</p> <pre><code>$('#some_image').hide() .load(function () { $(this).fadeIn(); }) .attr('src', 'images/headshot.jpg') </code></pre> http://stackoverflow.com/questions/1288696/linkedlistt-2-0-removing-items-iteratively/1288732#1288732 1 Answer by Kris Erickson for LinkedList<T> (2.0): removing items iteratively Kris Erickson 2009-08-17T15:50:06Z 2009-08-17T15:50:06Z <p>It's actually a lot easier in C#.</p> <pre><code>function PlaceAtHead(&lt;T&gt; x) { list.Remove(x); list.AddFirst(x); return x; } </code></pre> http://stackoverflow.com/questions/1288678/hide-index-php-or-index-html-of-an-url/1288690#1288690 1 Answer by Kris Erickson for Hide index.php (or index.html) of an URL Kris Erickson 2009-08-17T15:43:08Z 2009-08-17T15:43:08Z <p>You can easily do this with URL mapping in either the http.conf file or individual .htaccess files in your application directories. Turn on <a href="http://httpd.apache.org/docs/1.3/mod/mod%5Frewrite.html" rel="nofollow">mod rewrite</a>. <a href="http://www.sitepoint.com/article/guide-url-rewriting/" rel="nofollow">Here</a> is a simple tutorial. </p> http://stackoverflow.com/questions/480989/pdf-search-and-replace-in-c/1278307#1278307 0 Answer by Kris Erickson for PDF Search and Replace in C# Kris Erickson 2009-08-14T14:48:29Z 2009-08-14T14:48:29Z <p>You might try <a href="http://pdfsharp.com/PDFsharp/" rel="nofollow">PDFSharp</a>, it allows access to text and allows you to modify existing content.</p> http://stackoverflow.com/questions/1278024/mixing-c-vb-in-the-same-project/1278265#1278265 0 Answer by Kris Erickson for Mixing C# & VB In The Same Project Kris Erickson 2009-08-14T14:42:38Z 2009-08-14T14:42:38Z <p>Although Visual Studio does not support this (you can do some tricks and get MSBuild to compile both, but not from within Visual Studio), <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a> does. You can have both in the same solution (as long as you are running Visual Studio Professional and above), so the easiest solution if you want to keep using Visual Studio is to seperate your VB code into a different project and access it that way. </p> http://stackoverflow.com/questions/1262201/cut-strings-short-php/1262241#1262241 0 Answer by Kris Erickson for Cut strings short PHP Kris Erickson 2009-08-11T18:49:48Z 2009-08-11T18:49:48Z <p>It would be basically impossible to do this in PHP with a non monospace font (even with a monospace font, it is difficult to tell exactly how long a string in going to be in a certain browser. The only way I can think of doing this in a browser is to put it in a and set the width of a the span to be a certain width then use overflow: hidden.</p> http://stackoverflow.com/questions/1246319/why-are-the-configuration-options-not-available-in-visual-studio-2008 0 Why are the Configuration options not available in Visual Studio 2008? Kris Erickson 2009-08-07T18:30:15Z 2009-08-10T22:59:06Z <p>I have a simple Web Handler project, and for some reason I cannot choose it's configuration either from the drop Down on the standard bar (It is greyed out), or from the Build Menu (there is no "Batch Build" or "Configuration Manager" menu entries for this one project). All the rest of my projects work fine, and it is a fresh clean build of Visual Studio 2008 (although it is on Windows7 64 bit). The project is fine on other computers (in that you can change configuration easily). Anyone seen anything like this before?</p> http://stackoverflow.com/questions/1772083/when-drawing-an-image-system-runtime-interopservices-externalexception-a-generi/1783778#1783778 Comment by Kris Erickson on When drawing an image: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI Kris Erickson 2009-11-24T06:06:53Z 2009-11-24T06:06:53Z Yeah, you should dispose of tmpImage explicitly, although the disposal of the memoryStream will garbage collect most of the underlying data. I've changed the answer to show that. http://stackoverflow.com/questions/1772083/when-drawing-an-image-system-runtime-interopservices-externalexception-a-generi/1776269#1776269 Comment by Kris Erickson on When drawing an image: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI Kris Erickson 2009-11-23T15:20:03Z 2009-11-23T15:20:03Z Just to keep things clear I have posted the answer to your problem below. http://stackoverflow.com/questions/1582499/resize-image-gdi-graphics-net/1582757#1582757 Comment by Kris Erickson on Resize image gdi+ graphics .net Kris Erickson 2009-10-18T20:56:32Z 2009-10-18T20:56:32Z Are you loading it directly or from a MemoryStream? Is there any chance that it is going out of scope before calling createSmallerImage? http://stackoverflow.com/questions/1582746/mysql-syntax-error/1582753#1582753 Comment by Kris Erickson on mysql syntax error Kris Erickson 2009-10-17T17:38:42Z 2009-10-17T17:38:42Z If you have to quote the column names use backticks (`) in Mysql. http://stackoverflow.com/questions/1429683/streaming-jpeg-resizer/1435641#1435641 Comment by Kris Erickson on Streaming Jpeg Resizer Kris Erickson 2009-09-16T21:43:54Z 2009-09-16T21:43:54Z What I want to do is be able to convert a 150 MegaPixel image to a smaller size (for example 1 MegaPixel) without having to use 500 Megs of memory to load the image into memory. I want to be able to load smaller chunks into memory and work on those, rather than the entire block. http://stackoverflow.com/questions/1314787/deploying-activex-dll-via-msi-file-results-in-red-x-in-ie-after-user-clicks-trust Comment by Kris Erickson on Deploying activex DLL via msi file results in red x in IE after user clicks trust. Kris Erickson 2009-09-04T14:55:01Z 2009-09-04T14:55:01Z Is the .Net user control signed and installed in the GAC? http://stackoverflow.com/questions/1273428/how-do-i-stop-the-jquery-ui-slider-from-sliding-beyond-the-gutter/1348248#1348248 Comment by Kris Erickson on How do I stop the jquery UI slider from sliding beyond the gutter. Kris Erickson 2009-08-28T21:26:49Z 2009-08-28T21:26:49Z This is exactly what I wanted. Thanks. http://stackoverflow.com/questions/1294513/jquery-fade-in-image-after-image/1294593#1294593 Comment by Kris Erickson on jquery: fade in image after image Kris Erickson 2009-08-18T17:06:36Z 2009-08-18T17:06:36Z You can see it in action here: <a href="http://jsbin.com/ejesu/edit" rel="nofollow">jsbin.com/ejesu/edit</a> (for as long as jsbin keeps the snippet). http://stackoverflow.com/questions/1294513/jquery-fade-in-image-after-image/1294593#1294593 Comment by Kris Erickson on jquery: fade in image after image Kris Erickson 2009-08-18T16:54:51Z 2009-08-18T16:54:51Z Yes, it happens when the image is loaded. http://stackoverflow.com/questions/1288678/hide-index-php-or-index-html-of-an-url/1288690#1288690 Comment by Kris Erickson on Hide index.php (or index.html) of an URL Kris Erickson 2009-08-18T02:26:55Z 2009-08-18T02:26:55Z Agreed, if you only want to handle index.html then that is correct. If you have more than one &quot;control&quot; page, you need mod_rewrite. http://stackoverflow.com/questions/1288696/linkedlistt-2-0-removing-items-iteratively/1288732#1288732 Comment by Kris Erickson on LinkedList<T> (2.0): removing items iteratively Kris Erickson 2009-08-17T15:56:13Z 2009-08-17T15:56:13Z This just does exactly what Antonello code snippet does. You cannot remove an item while you are enumerating through it, however .Net does allow you to just remove items without having to enumerate to find them. The standard solution to remove items from a .Net list of any kind is to build up a second list of Remove items and them remove them after the enumerator has finished, this just simplifies that. http://stackoverflow.com/questions/1273428/how-do-i-stop-the-jquery-ui-slider-from-sliding-beyond-the-gutter Comment by Kris Erickson on How do I stop the jquery UI slider from sliding beyond the gutter. Kris Erickson 2009-08-13T21:21:41Z 2009-08-13T21:21:41Z Firefox, IE, and Chrome on Windows. Drag the handle to the last pixel of the gutter, then you can drag it an extra few pixels. Replace the handle with a graphic of any size and it drags waay past the end of the gutter. http://stackoverflow.com/questions/1246319/why-are-the-configuration-options-not-available-in-visual-studio-2008/1257231#1257231 Comment by Kris Erickson on Why are the Configuration options not available in Visual Studio 2008? Kris Erickson 2009-08-10T23:05:15Z 2009-08-10T23:05:15Z I take that back, reseting Development Settings worked... http://stackoverflow.com/questions/1246319/why-are-the-configuration-options-not-available-in-visual-studio-2008/1257231#1257231 Comment by Kris Erickson on Why are the Configuration options not available in Visual Studio 2008? Kris Erickson 2009-08-10T22:55:28Z 2009-08-10T22:55:28Z It's only for one project, all other projects work fine. http://stackoverflow.com/questions/1245023/building-mysql-query-based-on-posted-variables Comment by Kris Erickson on Building MySQL query based on posted variables Kris Erickson 2009-08-07T14:55:31Z 2009-08-07T14:55:31Z As a side note, which you may be done but cut short for space, specify your fields rather than using *.