Showing category results for Featured

May 4, 2009
Post comments count0
Post likes count0

CodeRush Xpress 9.1 Beta: 59 Refactorings, 17 Consume-first providers, and Much more! (Lisa Feigenbaum)

Lisa Feigenbaum
Lisa Feigenbaum

Very exciting news! Developer Express is coming out with a new version of the FREE add-in we all know today as Refactor!. The new product, CodeRush XPress, builds on Refactor! by increasing the refactoring count to 59! It also includes a host of other editing functionality, making it a much richer tool for all-around IDE productivity. Consume-first...

May 3, 2009
Post comments count0
Post likes count0

CodeCast Episode 17: Visual Basic 2010 Preview with Lisa Feigenbaum

Lisa Feigenbaum
Lisa Feigenbaum

I recently recorded a CodeCast interview with Ken Levy. We discussed the VS2010 Editor, VB.NET line continuation removal, interop with dynamic languages, the Microsoft languages strategy, and the upcoming VS2010 Beta1 release. Recording: CodeCast Episode 17: Visual Basic 2010 Preview with Lisa Feigenbaum This episode includes Ken Levy with a part...

May 2, 2009
Post comments count0
Post likes count0

XML Literals, WCF and LINQ Article by Steele Price (Lisa Feigenbaum)

Lisa Feigenbaum
Lisa Feigenbaum

Steele wrote a great article in last month's issue of Visual Studio Magazine on XML Literals, WCF and LINQ. He shows how to use these three technologies together to produce more responsive ASP.NET pages, and more readable code. Lots of great tips for VB 2008.VSM's "On VB" Column: XML Literals, WCF and LINQ by Steele Price

Apr 30, 2009
Post comments count0
Post likes count0

TechEd North America, here we come! (Lisa Feigenbaum)

Lisa Feigenbaum
Lisa Feigenbaum

TechEd North America 2009 is right around the corner. For those of you attending, we look forward to spending time with you at the VB.NET sessions and Technical Learning Center (a.k.a. booth). I've pasted the VB.NET session list below. See you in LA!

Apr 29, 2009
Post comments count0
Post likes count0

When using LINQ to XML why don’t I get results if I don’t import a XML namespace (Daniel Walzenbach)?

VBTeam
VBTeam

Hi,I posted a bit of code the other day which I used to get a list of all Code Snippets we ship in Visual Studio. In a nutshell, I used XElement.Load to create a new XML document from a filename from which I then read elements from (There are way to many ‘”from” in this sentence ;-) ). Unfortunately, I forgot to import the XML Nam...

Apr 29, 2009
Post comments count0
Post likes count0

Luca Bolognese on Asynchronous HTML caching in VB.NET (Lisa Feigenbaum)

Lisa Feigenbaum
Lisa Feigenbaum

You may know Luca Bolognese from his well-known work on C# LINQ. Luca is now the Group Program Manager for VB.NET, C#, and F#. You can check out his blog here. Luca recently blogged his first VB.NET post. It is about asynchronous HTML caching, and is part of a longer series in which he is converting a financial VBA Excel add-in to .NET. The code us...

Apr 23, 2009
Post comments count0
Post likes count0

How to get a list of all files of a directory (subdirectories included) (Daniel Walzenbach)?

VBTeam
VBTeam

I needed to create a list of all Code Snippets we ship in Visual Studio the other day containing their title, description and path on disc and size. As you might know, Code Snippets are stored in multiple directories below "%ProgramFiles%Microsoft Visual Studio 10.0" so I had to traverse all the subdirectories of the aforementioned path to find all...

Apr 16, 2009
Post comments count0
Post likes count0

Two free e-books available till April 22th to celebrate MS Press’s 25th b-day (Daniel Walzenbach)

VBTeam
VBTeam

2009 is the 25th anniversary of Microsoft Press! To celebrate their b-bay they’re giving away two free e-books, namely Before opening one of the links make sure that you disable your Pop-Up blocker as the window containing the book will be opened in a new window. Additionally, when the new window gets opened give it some time to show the cont...

Apr 6, 2009
Post comments count0
Post likes count0

Negative delays: not in VB (Lucian Wischik)

VBTeam
VBTeam

Our recent post on "negative sleeps in VB" was an April Fool's joke. VB doesn't have negative sleeps, and isn't going to. But the joke's on me! Several readers wrote back to say that other languages do have negative sleeps. Tony Hoare, inventor of "Quicksort" amongst other things, wrote: Did you know that negative delays have long been used i...

Apr 1, 2009
Post comments count0
Post likes count0

Using "negative sleeps" to improve responsiveness in VB web apps

VBTeam
VBTeam

[NOTE: please also read the followup to this article]  .NET 4.0 will introduce many new threading and concurrency classes -- SpinLock, Parallel Linq, and ConcurrentDictionary to name but a few.The new feature that excites me the most is the ability to pass a negative argument to Thread.Sleep. This article describes how you ...