User Steve Hiner - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:50:47Z http://stackoverflow.com/feeds/user/10221 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1835238/can-i-use-the-net-cf-unhandled-exception-dialog-to-display-and-exception-that-wa 0 Can I use the .Net CF unhandled exception dialog to display and exception that was caught? Steve Hiner 2009-12-02T19:27:15Z 2009-12-03T12:18:51Z <p>In my .Net 3.5 Compact Framework app I recently added an unhandled exception handler. I did it just so I could add the error to our log file and reboot the system. In certain modes I want to display the error to the user. I find that the messagebox is far inferior for error display than the dialog the CLR would use if I didn't catch the exception.</p> <p>Is there any way I can get to that dialog and show it to the user or is it private and hidden deep in the CLR?</p> http://stackoverflow.com/questions/562283/jquery-find-doesnt-return-data-in-ie-but-does-in-firefox-and-chrome 4 jQuery .find() doesn't return data in IE but does in Firefox and Chrome Steve Hiner 2009-02-18T18:28:17Z 2009-11-25T12:12:12Z <p>I helped a friend out by doing a little web work for him. Part of what he needed was an easy way to change a couple pieces of text on his site. Rather than having him edit the HTML I decided to provide an XML file with the messages in it and I used jQuery to pull them out of the file and insert them into the page.</p> <p>It works great... In Firefox and Chrome, not so great in IE7. I was hoping one of you could tell me why. I did a fair but of googling but couldn't find what I'm looking for.</p> <p>Here's the XML:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;messages&gt; &lt;message type="HeaderMessage"&gt; This message is put up in the header area. &lt;/message&gt; &lt;message type="FooterMessage"&gt; This message is put in the lower left cell. &lt;/message&gt; &lt;/messages&gt; </code></pre> <p>And here's my jQuery call:</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function() { $.get('messages.xml', function(d) { //I have confirmed that it gets to here in IE //and it has the xml loaded. //alert(d); gives me a message box with the xml text in it //alert($(d).find('message')); gives me "[object Object]" //alert($(d).find('message')[0]); gives me "undefined" //alert($(d).find('message').Length); gives me "undefined" $(d).find('message').each(function() { //But it never gets to here in IE var $msg = $(this); var type = $msg.attr("type"); var message = $msg.text(); switch (type) { case "HeaderMessage": $("#HeaderMessageDiv").html(message); break; case "FooterMessage": $("#footermessagecell").html(message); break; default: } }); }); }); &lt;/script&gt; </code></pre> <p>Is there something I need to do differently in IE? Based on the message box with [object Object] I'm assumed that .find was working in IE but since I can't index into the array with [0] or check it's Length I'm guessing that means .find isn't returning any results. Any reason why that would work perfectly in Firefox and Chrome but fail in IE?</p> <p>I'm a total newbie with jQuery so I hope I haven't just done something stupid. That code above was scraped out of a forum and modified to suit my needs. Since jQuery is cross-platform I figured I wouldn't have to deal with this mess.</p> <p>Edit: I've found that if I load the page in Visual Studio 2008 and run it then it will work in IE. So it turns out it always works when run through the development web server. Now I'm thinking IE just doesn't like doing .find in XML loaded off of my local drive so maybe when this is on an actual web server it will work OK.</p> <p>I have confirmed that it works fine when browsed from a web server. Must be a peculiarity with IE. I'm guessing it's because the web server sets the mime type for the xml data file transfer and without that IE doesn't parse the xml correctly.</p> http://stackoverflow.com/questions/283456/byte-array-pattern-search/1271069#1271069 0 Answer by Steve Hiner for byte[] array pattern search Steve Hiner 2009-08-13T09:51:37Z 2009-08-13T09:51:37Z <p>Speed isn't everything. Did you check them for consistency?</p> <p>I didn't test all the code listed here. I tested my own code (which wasn't totally consistent, I admit) and IndexOfSequence. I found that for many tests IndexOfSequence was quite a bit faster than my code but with repeated testing I found that it was less consistent. In particular it seems to have the most trouble with finding patterns at the end of the array but it will miss them in the middle of the array too sometimes.</p> <p>My test code isn't designed for efficiency, I just wanted to have a bunch of random data with some known strings inside. That test pattern is roughly like a boundary marker in an http form upload stream. That's what I was looking for when I ran across this code so I figured I'd test it with the kind of data I'll be searching for. It appears that the longer the pattern is the more often IndexOfSequence will miss a value.</p> <pre><code>private static void TestMethod() { Random rnd = new Random(DateTime.Now.Millisecond); string Pattern = "-------------------------------65498495198498"; byte[] pattern = Encoding.ASCII.GetBytes(Pattern); byte[] testBytes; int count = 3; for (int i = 0; i &lt; 100; i++) { StringBuilder TestString = new StringBuilder(2500); TestString.Append(Pattern); byte[] buf = new byte[1000]; rnd.NextBytes(buf); TestString.Append(Encoding.ASCII.GetString(buf)); TestString.Append(Pattern); rnd.NextBytes(buf); TestString.Append(Encoding.ASCII.GetString(buf)); TestString.Append(Pattern); testBytes = Encoding.ASCII.GetBytes(TestString.ToString()); List&lt;int&gt; idx = IndexOfSequence(ref testBytes, pattern, 0); if (idx.Count != count) { Console.Write("change from {0} to {1} on iteration {2}: ", count, idx.Count, i); foreach (int ix in idx) { Console.Write("{0}, ", ix); } Console.WriteLine(); count = idx.Count; } } Console.WriteLine("Press ENTER to exit"); Console.ReadLine(); } </code></pre> <p>(obviously I converted IndexOfSequence from an extension back into a normal method for this testing)</p> <p>Here's a sample run of my output:</p> <pre><code>change from 3 to 2 on iteration 1: 0, 2090, change from 2 to 3 on iteration 2: 0, 1045, 2090, change from 3 to 2 on iteration 3: 0, 1045, change from 2 to 3 on iteration 4: 0, 1045, 2090, change from 3 to 2 on iteration 6: 0, 2090, change from 2 to 3 on iteration 7: 0, 1045, 2090, change from 3 to 2 on iteration 11: 0, 2090, change from 2 to 3 on iteration 12: 0, 1045, 2090, change from 3 to 2 on iteration 14: 0, 2090, change from 2 to 3 on iteration 16: 0, 1045, 2090, change from 3 to 2 on iteration 17: 0, 1045, change from 2 to 3 on iteration 18: 0, 1045, 2090, change from 3 to 1 on iteration 20: 0, change from 1 to 3 on iteration 21: 0, 1045, 2090, change from 3 to 2 on iteration 22: 0, 2090, change from 2 to 3 on iteration 23: 0, 1045, 2090, change from 3 to 2 on iteration 24: 0, 2090, change from 2 to 3 on iteration 25: 0, 1045, 2090, change from 3 to 2 on iteration 26: 0, 2090, change from 2 to 3 on iteration 27: 0, 1045, 2090, change from 3 to 2 on iteration 43: 0, 1045, change from 2 to 3 on iteration 44: 0, 1045, 2090, change from 3 to 2 on iteration 48: 0, 1045, change from 2 to 3 on iteration 49: 0, 1045, 2090, change from 3 to 2 on iteration 50: 0, 2090, change from 2 to 3 on iteration 52: 0, 1045, 2090, change from 3 to 2 on iteration 54: 0, 1045, change from 2 to 3 on iteration 57: 0, 1045, 2090, change from 3 to 2 on iteration 62: 0, 1045, change from 2 to 3 on iteration 63: 0, 1045, 2090, change from 3 to 2 on iteration 72: 0, 2090, change from 2 to 3 on iteration 73: 0, 1045, 2090, change from 3 to 2 on iteration 75: 0, 2090, change from 2 to 3 on iteration 76: 0, 1045, 2090, change from 3 to 2 on iteration 78: 0, 1045, change from 2 to 3 on iteration 79: 0, 1045, 2090, change from 3 to 2 on iteration 81: 0, 2090, change from 2 to 3 on iteration 82: 0, 1045, 2090, change from 3 to 2 on iteration 85: 0, 2090, change from 2 to 3 on iteration 86: 0, 1045, 2090, change from 3 to 2 on iteration 89: 0, 2090, change from 2 to 3 on iteration 90: 0, 1045, 2090, change from 3 to 2 on iteration 91: 0, 2090, change from 2 to 1 on iteration 92: 0, change from 1 to 3 on iteration 93: 0, 1045, 2090, change from 3 to 1 on iteration 99: 0, </code></pre> <p>I don't mean to pick on IndexOfSequence, it just happened to be the one I started working with today. I noticed at the end of the day that it seemed to be missing patterns in the data so I wrote my own pattern matcher tonight. It's not as fast though. I'm going to tweak it a bit more to see if I can get it 100% consistent before I post it.</p> <p>I just wanted to remind everyone that they should test things like this to make sure they give good, repeatable results before you trust them in production code.</p> http://stackoverflow.com/questions/376361/best-way-to-databind-a-winforms-control-to-a-nullable-type 1 Best way to databind a Winforms control to a nullable type? Steve Hiner 2008-12-17T22:55:54Z 2009-07-22T14:27:04Z <p>I'm currently using winforms databinding to wire up a data editing form. I'm using the netTiers framework through CodeSmith to generate my data objects. For database fields that allow nulls it creates nullable types. I've found that using winforms databinding the controls won't bind properly to nullable types.</p> <p>I've seen solutions online suggesting that people create new textbox classes that can handle the nullable types but that could be a pain having to swap out the textboxes on the forms I've already created.</p> <p>Initially I thought it would be great to use an extension method to do it. Basically creating an extension property for the textbox class and bind to that. From my limited extension method experience and doing a bit of checking online it looks like you can't do an extension property. As far as I can tell, binding has to be through a property since it needs to be able to get or set the value so an extension method wouldn't work.</p> <p>I'd love to find a clean way to retrofit these forms using something like extension methods but if I have to create new textbox and combo box controls that's what I'll do. </p> <p>My project is currently limited to .Net 2.0 due to the requirement to run on Windows 2000.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1040843/can-visios-macro-warning-prompt-be-surpressed-when-automating-in-code 0 Can Visio's macro warning prompt be surpressed when automating in code? Steve Hiner 2009-06-24T20:36:56Z 2009-06-30T16:20:46Z <p>I'm automating Visio 2003 from a VB.NET app. My code looks like this (with the uninteresting stuff removed):</p> <pre><code>Dim objApp As New Microsoft.Office.Interop.Visio.InvisibleApp objApp.Settings.ShowFileOpenWarnings = False Dim objDoc As Microsoft.Office.Interop.Visio.Document objDoc = objApp.Documents.Open(VisioFilename) </code></pre> <p>I've found that the last line causes Visio to raise a hidden MessageBox saying:</p> <blockquote>Macros in this document are disabled because the security level is high, and the macros have not been digitally signed or verified as safe. To run the macros, you can either have them signed or change your security level.</blockquote> <p>Since this is going to be running on computers I don't control with files I don't control neither of those options works for me. I really don't care that the macros are disabled, I'm just using Visio to convert the file from it's native format to SVG. I certainly don't want to suggest to users that they lower the security level, nor would I want to lower it for them.</p> <p>As you can see from my code above, I turn off file open warnings but that doesn't seem to include the macro warning. Since I'm using Visio.InvisibleApp it turns out the warning isn't displayed to the user. Running a visible instance of Visio won't help because I'm creating a batch converter, even if the message was visible it means the user would have to click OK for each file. That would make the batch conversion feature essentially useless.</p> <p>I see that the Visio class has a VBAEnabled property but it's read only. If there was a way I could just turn off VBA when opening the file it would likely solve the problem. I've looked all through the properties and through the Settings property on the class and can't find anything. I've done a bunch of Google searching and can't find anything that addresses this issue.</p> <p>Anyone know if that warning can be suppressed when using automation with Visio? Can I do it if I switch to Visio 2007?</p> http://stackoverflow.com/questions/1040843/can-visios-macro-warning-prompt-be-surpressed-when-automating-in-code/1064654#1064654 2 Answer by Steve Hiner for Can Visio's macro warning prompt be surpressed when automating in code? Steve Hiner 2009-06-30T16:20:46Z 2009-06-30T16:20:46Z <p>There is an OpenEx method that works just like Open but it accepts flags. One of those flags is visOpenMacrosDisabled (&amp;H80). </p> <p>There are also some other handy flags in there like visOpenDontList (&amp;H8) so the files opened through automation won't be added to the recent files list.</p> http://stackoverflow.com/questions/255104/best-way-to-deal-with-users-double-clicking-buttons-in-a-winforms-app 4 Best way to deal with users double-clicking buttons in a winforms app? Steve Hiner 2008-10-31T22:13:01Z 2009-06-28T20:11:28Z <p>I'm working on a WinForms app and I have a user control in it. The buttons in the user control raise events up to the form to be handled by other code. One of the buttons starts some processses that will cause problems if they run simultaneously. I have logic in the code to manage the state so typically a user can't run the process if it's already running. However, if the user double-clicks the button it will start the process twice so quickly that it's tough for me to prevent it.</p> <p>I'm wondering, what's the best way to handle this?</p> <p>I started out by disabling the button in the click event but the second click comes in before the first click causes the button to be disabled. Setting other flags in the code didn't catch it either.</p> <p>I'm considering adding some sort of sync lock on the code that raises the event but I'm wondering if any of you have a better idea. </p> <p>Since this project is mostly complete I'm looking for answers that don't involve a radical rewrite of the app (like implementing the composite application block), however, feel free to post those ideas too since I can use them in my next projects.</p> http://stackoverflow.com/questions/150045/good-linq-cheatsheets-with-vb-net-syntax 7 Good LINQ cheatsheets with VB.NET syntax? Steve Hiner 2008-09-29T18:40:14Z 2009-03-14T19:18:48Z <p>I've been looking for a cheatsheet to help me remember LINQ syntax but the only ones I've found have been for C#. It seems like the C# syntax for LINQ is pretty different from the VB.NET syntax.</p> <p>Any suggestions for a good, concise list of LINQ syntax for VB.NET?</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/211273#211273 1 Answer by Steve Hiner for What is the strangest/weirdest program you've ever made? Steve Hiner 2008-10-17T07:07:05Z 2008-10-17T07:07:05Z <p>I once wrote a Mandelbrot fractal generator using Excel. I resized the cells so all 256 columns fit on screen and shrunk the rows down so the cells were square. The in VBA code I calculated the bailout value and color for each cell and changed the cell background color. Basically it turned each cell in the spreadsheet into a pixel for a 256x256 Mandelbrot fractal image. I still have it laying around on my computer somewhere.</p> http://stackoverflow.com/questions/198873/os-compatibility-for-various-net-frameworks/198925#198925 12 Answer by Steve Hiner for OS Compatibility for various .Net Frameworks Steve Hiner 2008-10-13T20:30:49Z 2008-10-13T20:30:49Z <p>1.x and 2.0 work all the way back to Win98</p> <p><hr /></p> <p>2.0 Unsupported Operating Systems <a href="http://msdn.microsoft.com/en-us/library/ms229070(VS.80).aspx" rel="nofollow">according to Microsoft</a></p> <ul> <li>Microsoft Windows 95</li> <li>Microsoft Windows NT® Server</li> <li>Windows NT Workstation</li> <li>Windows Server 2003, Enterprise Edition for Itanium-based Systems</li> <li>Windows Server 2003, Datacenter Edition for Itanium-based Systems</li> </ul> <p><hr /></p> <p>.NET Framework 3.0 Support OSs</p> <ul> <li>Microsoft Windows 2003 Server Service Pack 1 (SP1)</li> <li>Windows XP SP2</li> <li>Windows Vista</li> </ul> <p>Note: Windows Vista comes with .NET Framework 3.0. There is no separate installation package required. The standalone .NET Framework 3.0 packages are not supported on Vista.</p> <p><hr /></p> <p>.NET Framework 3.5 Supported OSs</p> <ul> <li>Microsoft Windows XP</li> <li>Microsoft Windows Server 2003</li> <li>Windows Vista</li> <li>Windows Server 2008</li> </ul> http://stackoverflow.com/questions/193773/what-are-the-most-important-parts-of-the-net-framework-for-a-beginner/193813#193813 1 Answer by Steve Hiner for What are the most important parts of the .Net framework for a beginner? Steve Hiner 2008-10-11T07:36:34Z 2008-10-11T07:36:34Z <p>If you're working in VB.NET I'd say the My namespace is very important. It contains shortcuts to a lot of areas of the framework that used to be spread all over the place in the framework. It's also quite intuitive. You can write things like:<br /> For Each Printer in My.Computer.Printers<br /> or<br /> My.Computer.FileSystem.OpenFile(Filename)<br /> My.Computer.Info.AvailablePhysicalMemory<br /> My.Computer.Screen.PrimaryScreen.WorkingArea</p> http://stackoverflow.com/questions/150816/what-has-stackoverflow-taught-you/150864#150864 0 Answer by Steve Hiner for What has stackoverflow taught you? Steve Hiner 2008-09-29T21:46:47Z 2008-09-29T21:46:47Z <p>I've learned that all the good discussion forum ideas weren't used up. The more I think about stackoverflow's feature set the more brilliant I think the creators are for coming up with this. </p> <p>I just wish they'd hurry up and start licensing it to all the other forums I participate in since it would make them 100 times more useful.</p> http://stackoverflow.com/questions/1835238/can-i-use-the-net-cf-unhandled-exception-dialog-to-display-and-exception-that-wa Comment by Steve Hiner on Can I use the .Net CF unhandled exception dialog to display and exception that was caught? Steve Hiner 2009-12-03T19:55:03Z 2009-12-03T19:55:03Z It is effectively an unhandled exception. It wasn't handled in the code, all I'm doing is logging it and showing it to the user if it's a debug build. Either way the program is ending. Can you clarify what is bad about doing this? I know it's bad to catch unhandled exceptions and then let the program keep running since it would be in an unknown state but that's not what I'm doing. http://stackoverflow.com/questions/1040843/can-visios-macro-warning-prompt-be-surpressed-when-automating-in-code/1064654#1064654 Comment by Steve Hiner on Can Visio's macro warning prompt be surpressed when automating in code? Steve Hiner 2009-06-30T16:21:39Z 2009-06-30T16:21:39Z I realize this is something I should have noticed initially. I'm going to leave the question and answer up here in case someone else has a similar problem. http://stackoverflow.com/questions/562283/jquery-find-doesnt-return-data-in-ie-but-does-in-firefox-and-chrome/564856#564856 Comment by Steve Hiner on jQuery .find() doesn't return data in IE but does in Firefox and Chrome Steve Hiner 2009-02-20T20:17:03Z 2009-02-20T20:17:03Z Adding &quot;xml&quot; didn't work, neither did filter. At this point I guess I have to chalk it up to a peculiarity in IE. As long as it works on the server I can live with it. http://stackoverflow.com/questions/562283/jquery-find-doesnt-return-data-in-ie-but-does-in-firefox-and-chrome/562613#562613 Comment by Steve Hiner on jQuery .find() doesn't return data in IE but does in Firefox and Chrome Steve Hiner 2009-02-18T22:21:06Z 2009-02-18T22:21:06Z How do I check that in a call like I have above? How would I set it to the right thing in jquery? http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271444#271444 Comment by Steve Hiner on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) Steve Hiner 2008-11-07T19:52:20Z 2008-11-07T19:52:20Z I love this one but I'm trying to decide if it's right to make the bounds check inclusive on the min value but exclusive on the max value. I wonder if that would be confusing. 5.Between(5,10) is true but 5.Between(1,5) is false. Not even sure that a companion Within method would help. Thougts? http://stackoverflow.com/questions/48251/windows-powershell-book-any-good-experiences/48269#48269 Comment by Steve Hiner on Windows Powershell book - any good experiences? Steve Hiner 2008-11-03T21:12:16Z 2008-11-03T21:12:16Z I'm reading it right now and it's an excellent book for programmers. Gets into the nitty-gritty of the shell. He tells you why things work the way they do. I find it easier to remember how they work when I know why they work that way. http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119290#119290 Comment by Steve Hiner on What is the strangest/weirdest program you've ever made? Steve Hiner 2008-11-03T20:56:23Z 2008-11-03T20:56:23Z I did the same thing but as an Outlook macro. I'd annoy my friends by running it on email before sending it to them. http://stackoverflow.com/questions/234734/games-that-teach-programming-fundamentals/234857#234857 Comment by Steve Hiner on Games that teach Programming Fundamentals Steve Hiner 2008-10-24T20:07:01Z 2008-10-24T20:07:01Z I'm obsessed with Fantastic Contraption. Absolutely awesome game. You can also check out Magic Pen which is similar. You can find it at <a href="http://www.gamesvine.com/random/MagicPen/" rel="nofollow">gamesvine.com/random/MagicPen</a> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164818#164818 Comment by Steve Hiner on What real life bad habits has programming given you? Steve Hiner 2008-10-21T23:36:37Z 2008-10-21T23:36:37Z Of course this means you're making an incorrect assumption. You've decided the return value is a boolean when in fact it's an enum. The waitress believed she was selecting the correct overload by providing the enum values as an argument. http://stackoverflow.com/questions/6936/using-what-ive-learned-from-stackoverflow-html-scraper/125090#125090 Comment by Steve Hiner on Using what I've learned from stackoverflow. (HTML Scraper) Steve Hiner 2008-10-17T07:22:53Z 2008-10-17T07:22:53Z Great idea. Literally 30 seconds ago I saved the python code to a file so I could translate it to PowerShell script. Now I don't have to.