Browse by Tags
All Tags »
VS2008 (
RSS)
First the good news : The February release of the Snippet Editor has now had 10,000 downloads ! Now for bug fix news: There were a couple of issues with the paths per language. A problem with Express Editions of Visual Studio occurred due to partial...
Back in April 2006, I blogged about a nasty JIT compiler optimisation that would cause String.IsNullOrEmpty to throw a null reference exception; ironic really given that is the very thing you’d use the IsNullOrEmpty method to check against. ...
VB has a lot of high level features other .Net languages, in particular C# don’t. Sadly these are often overlooked by some developers because other languages like C# don’t have them – the lowest common denominator syndrome. This is sad because...
I’ve just uploaded a new screen cast: Snippet Editor Tips and Tricks Enjoy :) (oh and don’t forget the “ buy me a beer ” button)
Snippet Editor 2.1 is now released on codeplex: http://www.codeplex.com/SnippetEditor Apart from the few minor bug fixes, it includes improved search and now support for Visual Studio 2010 as well as 2008 and 2005. I’ve also added a “buy me a beer...
Although VB 10 won’t have a formal syntax for iterators, it will have all the necessary ingredients to easily write iterators. In VB10 you can use a generic template and multi line lambdas to create iterators. This iterator in C# : static public...
One of the nice things about the My application framework in VB.NET is the ability to easily show splash screens. The splash screen is displayed using a separate thread and by default will close when your main form’s Load event is called. There...
A comment by Joe Duffy on the Framework Guidelines for Extension says : Extension methods can also be used to provide actual concrete method implementations for interfaces. And this is a very important point. In .NET there is no support for multiple implementation...
Earlier I posted what I hope wetted your appetite for some more info about Libraries in Windows 7. So what are libraries you ask//I ask ;) Well I hope the following provides some insight. caveat emptor: this is still just my first impressions...
XML is very flexible and somewhat permissive in what it allows. Consider this piece of XML: el = < item > some values < first > one </ first >< second > two </ second ></ item > ...
When I’ve started new Visual Studio projects on my Vista x64 box, the Company field would always show up as “Microsoft”… somewhat presumptuous and definitely annoying. At first I thought the problem was with the templates, but upon inspection they...
When I was going through the snippet editor code to put it on CodePlex, I wanted to grab a screen shot of the snippet schema. immediately I was confronted with there being no visual designer for schemas in VS 2008, but the worse part was...
I’ve just finished uploading the Snippet Editor to CodePlex http://www.codeplex.com/SnippetEditor It includes some minor bug fixes from the previous release. Enjoy :) And Merry XMas :)
From a recent discussion on using lists, and whether or not you can remove items in while iterating, I decided to write an extension that allows you to get a “transaction” for an IList(Of t). This ListTransaction(Of T) caches adds and removes until...
Over the last week I’ve got a sudden influx of emails about the Snippet Editor. I’m figuring this is stemming from Lisa’s recent blog entry and her tips and trips for VS 2008 presentation :) Some of the emails have been really nice praise...
you can tell from the title there’s a Friday rant coming can’t you ? Well yeh, sometimes what should be a simple task of writing code becomes painstakingly slow. Take for example this one line of code: Dim doc = XDocument.Load( "abc...
When Visual Studio 2008 SP1 was released it didn’t have the source code for the framework like the original version of 2008 had. Well now it has !! Actually it was released almost two weeks ago .
I’ve been waiting for this update for VS 2008 SDK for VS 2008 SP1. The link I got fro ma msdn blog post was wrong, so here’s the link to the download page. http://www.microsoft.com/downloads/details.aspx?FamilyID=59ec6ec3-4273-48a3-ba25-dc925a45584d&DisplayLang...
Davy Brion posted about how events can keep object references alive. In C# to rid yourself of this issue you have to manually unwire any event handler you wired. In VB, it is a lot easier, all you have to do is use WithEvents and set the variable...
In case you haven’t seen it, Microsoft is releasing tools for WPF out of cycle as part of the WPF toolkit . Current release includes a CTP of a Data Grid, and a Date Picker and Calendar is planned.
More Posts
Next page »