Browse by Tags

All Tags » .NET code (RSS)

Ten Tips for a Happy Upgrade to Visual Studio 2008 (Release)

Visual Studio 2008 has been out for over a week. I've upgraded three machines (two Vista, one XP) from Beta 2 to RTM, then upgraded a couple of projects. I've also been watching blog posts and listening in at the Twitter water-cooler to hear about other...

Creating Zip archives in .NET (without an external library like SharpZipLib)

Overview SharpZipLib provides best free .NET compression library, but what if you can't use it due to the GPL license? I'll look at a few options, ending with my favorite - System.IO.Packaging. SharpZipLib is good, but there's that GPL thing SharpZipLib...

Silverlight 1.1 (Alpha) cross domain webservice access makes mashups tricky

Any web mashups, by definition, require cross-domain calls. Those cross-domain calls may happen on the client (in the browser) or on the server. Regardless of the client technology (AJAX, Flash, Silverlight, etc.), cross domain calls on the client are...
Posted by Jon Galloway | 10 comment(s)
Filed under: , ,

Some keyboard input tricks for Silverlight 1.1 (Alpha)

Here are a few tricks I learned while doing my "hello world" maze game in Silverlight 1.1 . Silverlight doesn't fire the KeyDown event for cursor (arrow) keys However, just about all keys will fire a KeyUp event. In my case, I was able to just handle...
Posted by Jon Galloway | 10 comment(s)
Filed under: , ,

VB.NET vs. C#, round 3?

VB.NET gets a hard time from C# developers. For a variety of reasons, the leading .NET programmers seem to be working in C# , and VB.NET developers get really tired of saying, "Hey, VB.NET can do that, too!" The VB crowd's got something new to talk about...
Posted by Jon Galloway | 9 comment(s)
Filed under: ,

CodePlex is adding support for <strike>Subversion</strike> TortoiseSVN

I just heard that CodePlex is adding support for TortoiseSVN with an estimated release date of June 5 . UPDATE: Newer comments make it look like they are just setting up a bridge from TortoiseSVN to TFS. Not clear... Although the information just says...
Posted by Jon Galloway | 8 comment(s)
Filed under: , ,

MIX07 - WCF adding System.UriTemplate, [WebGet], and [WebInvoke]

System.UriTemplate Build and parse URI's System.UriTemplate (Orcas) - runtime support for URI template syntax UriTemplate.Bind - A safe, smart string.format for URI construction UriTemplate.Match - Extracts URI to dictionary UriTemplateTable - One or...
Posted by Jon Galloway | with no comments
Filed under: , , ,

Sending files via the default e-mail client

I recently released a "Send To Email" plugin for Cropper, which makes it easy to grab a portion of your screen and send it as an e-mail attachment. It's easy enough to directly send an e-mail in .NET using System.Net.Mail , but there's no provision for...

CropperPlugins on CodePlex

Cropper is my favorite screenshot application because it supports plugins. I've published a few over the years - Capture to AVI and Capture to Animated GIF. My favorite plugin is one that I didn't write - Patrick Altman's Send To Flickr plugin . Now that...
Posted by Jon Galloway | 2 comment(s)
Filed under: ,

[Code] Show a file in Explorer

I've noticed that some of my favorite programs have options to open the currently selected file in Explorer. I don't just mean that they open the right folder, but that they preselect the right file for you. Visual Studio 2005 does it when you...
More Posts Next page »