Remember Hailstorm/.NET My Services? I'm curious what happened to the XML/document-centric approach they were using to implement it. I thought the whole...
Pay attention when a new .NET Framework is released. Microsoft may change the hashing algorithm, and then you won't find your files anymore. Regards, Thomas...
... Very good point! If you are using GetHashCode for anything other that in-memory, one-run values, you are asking for trouble. In this case, something as...
Yep thats very true, But we also keep the originals in a db. On disk we store the different formats and resolution. From 1.1 to 2.0 they already changed the...
In theory this also applies to Primary Interop Assemblies, which should be strong named. The documentation suggests that 'well-known' PIAs should be deployed...
As cool as that one-liner is, a very simple findstr command will do most of that for you. It seems like PowerShell is trying to be VS-lite, which is not...
Hey, I haven't officially announced this yet, but here is a little tidbit for the OT readers: Release Candidate 1 for XPathmania 1.0, an XPath Tool Window for...
This is a beautiful idea... can't wait to test drive it. (Although, after lo these many years, I *am* finally getting pretty good at getting my xpath q's...
? Hey all. I am trying to capture, as early as possible in an HttpModule with Framework 2.0, the IsPostBack value. I was playing in the HttpApplication ...
Well I honestly don't think you can do this because the Page won't know it's a post back until it starts processing the request. The last event before that...
I'm not sure what you are after ultimately, but during BeginRequest you can look at HttpContext.Current.Request.RequestType. This will give you the HTTP verb...
Well, a POST is not always equal to a PostBack, but yeah that could certainly work depending on what he's after. I guess you could just add in a check for the...
Nice little tool. Easy to install, easy to use. I like it. The only obvious enhancement that I could think of would be an option to do a query relative to the...
It's a minor caveat, but there is one case where method=POST and __VIEWSTATE exists doesn't equate to a postback, which is when you perform a cross-page post...
I'm consider buying a used Sony 21" CRT GDM 5410 (oem'd as Sun Monitor) to use for digital imaging – so color accuracy is important. But I wonder how long it...
I don't know much about CRT life, but I do know a little about calibrating monitors. First of all, if you have the original Spyder, it's not very good. You...
There is some tool that ships with WinXP that opens images, I'm not sure exactly what it's called, or how it integrates with the shell, etc. It's the standard...
... It's called "Windows Picture and Fax Viewer" ... What happens if you save your bitmap in another folder or on another disk. Could it be a disk failure? Can...
... Yep, that's the one. ... If I copy to a folder on a local disk, it works fine. ... Nope. RAID5 disk array being shared over a (presently) reliable network....
What's particularly interesting is that it is my entire shell which locks up. I.e. explorer.exe hangs. It doesn't 'completely' hang though, it just locks up...
Not a solution to your problem, but if you this bugs you enough, you can configure explorer to run each window in it's own process. This might prevent the...
Darrel & Shawn, Thanks for the feedback! Darrel's suggestion is possible, but not something that is as easy as it sounds, since I would prefer to add a...
This is great Don! Up until now I've been using Aaron Skonnard's old XPath Expression Builder[1] which used IE's integrated MSXML. It worked, but it wasn't...
Does anyone out there know of a .Net library that will produce engineering drawings? I need to display them on the screen and be able to print them as well. ...
Hey all, What gives with 64bit support in general? It seems like there are still a bunch of feet draggers for supporting 64 bit. I'm looking at you MSN Desktop...
Hi Rob, ... Anything based on DLL-based extension is going to need recompile for 64-bit, like shell extensions and other plug-ins. As I understand it, a 64-bit...