I use this [1]. It's a bit clunky but is works. I did want to to a simplification for auto discovering the constand key value in the eents collection but it...
When would it make sense to have multiple IP addresses with a "Link Load Balancer" vs. a single IP address space with BGP? The former solution looks really...
Hi everybody, I've been designing a web service/application which exposes data objects via a WCF service. The data access layers for the service follow the...
Matt Lynch
M@...
Mar 2, 2007 12:14 am
52644
Is it just me, or is it down? I'm trying to get a way to get data like what is available through GetUserNameEx(...). I'm not finding it in .NET 2.0, which...
PInvoke.net is working for me. If you're looking for the interop signature for GetUserNameEx, it's already in the framework (albeit private) - use Reflector to...
Does anybody know if VMWare and Virtual PC 2007 can be installed (and work) on the same machine? I regularly use VMware Server, but I now want to try out some...
Fernando Tubio
ftnews@...
Mar 3, 2007 2:50 am
52649
They work fine side by side on my Vista box.though the VMWare can't seem to read my VPC 2007 images (it could with 2004), but that's not a side-by-side ...
... Thanks for answering Shawn. And are you able to simultaneously start virtual machines with both products, or do you have to run one or the other? Also,...
Fernando Tubio
ftnews@...
Mar 3, 2007 4:02 am
52651
The converter didn't work for me. I haven't tried to run VMW and VPC simultaneously (I only have 2 GB memory so 2 machines are painfully slow). Thanks, Shawn...
... Thanks again. It appears that my tolerance to pain may be slightly higher. :-) Fernando Tubio...
Fernando Tubio
ftnews@...
Mar 3, 2007 3:54 pm
52653
http://www.wired.com/wired/archive/15.03/hawkins.html *Jeff Hawkins created the Palm Pilot and the Treo. Now he says he's got the ultimate invention: software...
I added similar code a while ago to AutoExp visualizer for VS.NET 2005. Add following code to autoexp.cs, recompile the assembly and replace the one in ...
I want to add a forum section to my existing ASP.NET 2.0 website but all the ones I've tried seem completely broken or just don't integrate with an existing...
... To quote Family Guy: Holy Crap! Yeah, you could say that helps a little. I *never* would have thought of using Reflector to ferret out the native Win32...
Just found this on lifehacker while researching dual booting XP and Vista. Looks pretty cool and it's free! Linux.com points out that the free partition...
I'm coming in late, but I had to edit a huge file today: well, 2.8 MB, which is bigger than I was expecting. It was HTML, which I myself generated from the...
No problem mate. An extra word of advise: when using StringBuilder to represent an [out] string parameter, remember to get the sizing right -- I usually pick...
... Might work a *little* bit faster if the time for resizing of the internal memory buffer is less than the time creating a new buffer (and GC-ing the old one...
For Win32 functions that depend on a buffer of variable length that provide an [in,out] size parameter or a return value with the size, I typically use the...
Anyone preparing for this odd little hickup we have coming March 11 2007? My XP OS is already patched (KB931836). When we "spring ahead" at 2 am March 11...
It's funny - and not in a knee-slapping way - that I used to do this semi-obsessively when I was using glorious C++ (all hail deterministic finalization :) ),...
Two problems I have with the standard double-call approach... 1) Raciness -- what if the string changes (grows) between the first call and the next? This has...
... Implementation of the Text property from a text box resolves to (thanks Reflector!): get { if (this.window.Handle == IntPtr.Zero) { if (this.text == null) ...
In the case of GetWindowText/Length, I was (obviously?) referring to a window owned by a different thread. Yes, within the context of a a single UI thread...
I like to use UltraEdit - have been using it for years - it's great for loading/inspecting binary files as well as HTML/XML etc etc http://www.ultraedit.com/ ...
hi all, I have a quick question, i am designing a small app where my socket server can expect to recieve multiple connections from socket clients sending huge...
is there a tool or website out there where i can enter a regular expression, then enter a string and have it tell me whether it matches or not. i can easily...