Showing results for 2010 - Page 2 of 3 - Visual Basic Blog

May 24, 2010
Post comments count0
Post likes count0

Using HTML entities in XML Literals (Avner Aharoni)

VBTeam
VBTeam

One of the common use-cases of XML literals is creating HTML. However, HTML entities cannot be used in XML literals since LINQ to XML directly supports only the Data type definitions (DTD) defined in the XML 1.0 spec. You can read more about it here. The workaround is to use the Unicode representation of the entity, although it’s not as readable ...

May 3, 2010
Post comments count0
Post likes count0

Channel 9 Interview: Array and Collection Initializers in Visual Basic 2010 (Beth Massi, Spotty Bowles)

Beth Massi
Beth Massi

I’ve written about collection initializers on my blog before, but I thought I’d catch up with the VB Team to tell me more about how they really work.In this interview Spotty Bowles, a tester on the VB Compiler team, shows us a couple of new language features: Array and Collection Initializers. He gives us insight into how they are imple...

Apr 15, 2010
Post comments count0
Post likes count0

Visual Basic 2010 is here!

Lisa Feigenbaum
Lisa Feigenbaum

It was a very exciting time this week, with the launch of Visual Studio 2010 and .NET 4. On April 12th, 5 launch events took place around the world in Beijing, Kuala Lumpur, Bangalore, London and Las Vegas. The video from Bob Muglia’s VS 2010 Launch keynote is now available on-demand. The agenda for day was VS 2010 sessions, including Windows D...

Apr 13, 2010
Post comments count0
Post likes count0

Back to the future! – New version of the VB6 InteropForms toolkit is released!!

VBTeam
VBTeam

Along with all the new goodies that we released yesterday as part of Visual Studio 2010, one additional thing we did yesterday as well is release an update to the popular interopforms toolkit.   This update brings VS 2010 (and VS 2008!) support to the toolkit and fixes a smattering of reported bugs.    As many of you are aw...

Apr 8, 2010
Post comments count0
Post likes count0

Crystal Reports for Visual Studio 2010

VBTeam
VBTeam

Crystal Reports has been a part of Visual Basic since 1993, and a part of Visual Studio since its first release in 2002. Crystal Reports has been a very successful component of these products. With the release of Visual Studio 2010, SAP and Microsoft have mutually decided to change how we deliver this important component to the .NET developer comm...

Mar 26, 2010
Post comments count0
Post likes count0

Editing XML Literals Embedded Expressions in Visual Basic 2010 (Avner Aharoni)

VBTeam
VBTeam

The implicit line continuation feature in Visual Basic 2010 provided an opportunity to improve the code editing experience in XML literals embedded expressions. In Visual Studio 2008, pressing Enter inside an embedded expression would result in the cursor being positioned to the left of the end embedded expression tag. In Visual Studio 2010, pressi...

Feb 26, 2010
Post comments count0
Post likes count0

On The Blink (Matt Gertz)

Anthony D. Green [MSFT]
Anthony D. Green [MSFT]

One of the really fun things about being associated with the Visual Basic team is getting to see all of the varied usages to which our customers put it.  From enterprise software to games, our customer base covers a wide range.  The most fun to see, however, are the hobby applications, because the writers of that code come up with some pr...

Feb 1, 2010
Post comments count0
Post likes count0

New Learning Resources on the Visual Basic Developer Center (Beth Massi)

Beth Massi
Beth Massi

Today we revamped some of the Visual Basic Developer Center Learn pages with more content that allows you to pivot on more fine-grained topics and tasks related to Visual Basic programming. We’ve started with the Introductory Topics and Language Syntax pages. To get there, head to http://msdn.com/vbasic and then click the Learn tab. There you will ...

Jan 28, 2010
Post comments count0
Post likes count0

What didn't get into VB10: a wish-list for future versions of VB

VBTeam
VBTeam

Visual Studio 2010 is almost out the door. Now is a good time to look back at what we didn't get into the language in this release, but would have wanted to, and so will consider for future releases.Over the coming weeks, each day, I'll blog on blogs.msdn.com/lucian about the ideas on our wish-list, along with our evaluation of them....

Jan 26, 2010
Post comments count0
Post likes count0

The many cases of ByRef

VBTeam
VBTeam

One of the overlooked or simply misunderstood features of the VB language is calling a function which has a ByRef parameter.  Most languages support only a single method of passing parameters by reference [1], that is the scenarios directly supported by the CLR.  The CLR has a lot of restrictions on the type of values it supports for ByRe...