Showing category results for I’M A VB

Dec 27, 2007
Post comments count0
Post likes count0

LINQ for the Web Using VB (By Paul Yuknewicz)

VBTeam
VBTeam

Happy holidays!  It's been a long time since I've written a post, so I figure I can bring in the new year answering some great questions submitted by you.  Just this week someone gave me this feedback: "I am having a difficult time finding information to help me adapt to LINQ in my webforms. I am hoping that someone from the te...

Nov 21, 2007
Post comments count0
Post likes count0

Hidden Gems in Visual Basic 2008 (Amanda Silver)

VBTeam
VBTeam

Yesterday I promised to post about the hidden gems in Visual Basic and Visual Studio 2008 that you haven’t read about in blog posts or seen at conferences. I forgot that I mentioned a few of my favorite features in the Beta1 announcement where I showed off the improvements in the Intellisense experience – statement completion for keywor...

Sep 19, 2007
Post comments count0
Post likes count0

VB expression trees – string comparisons

VBTeam
VBTeam

Hey there! Last time, I talked a little bit about expression trees and what they are useful for. Expression trees are really interesting to those who want to write LINQ providers and have the ability to reason about the lambda expressions coming into their LINQ provider. However, in general, anyone that want's to reason about a lambda expression sh...

Sep 18, 2007
Post comments count0
Post likes count0

Visual Basic Developer Center Gets a Facelift (Beth Massi)

Beth Massi
Beth Massi

I'm happy to announce the redesign of the Visual Basic Developer Center! This is the first step in a series of community-focused and dynamic content changes you'll be seeing on the Developer Center. Many thanks to the people over at MSDN, (especially Kerby) that made this a reality. Besides the new UI and fresh headlines and downloads, check out th...

Sep 11, 2007
Post comments count0
Post likes count0

Lambda Expressions and Expression Trees

VBTeam
VBTeam

Hi there! My name is Tim, and I'm the dev lead for the VB compiler team. Recently Amanda convinced me to blog on the VB team blog rather then my own blog for a variety of reasons, and so here I am. My current plan is that I'll post VB related postings here, and more compiler implementation/technology/fun facts on my own blog (ie, things that don't ...

Sep 6, 2007
Post comments count0
Post likes count0

Fun with VB !!!

VBTeam
VBTeam

Who says you can't obfuscate VB code? For fun, I tried writing some VB code which was shaped in the letters 'vb' (that's right, the code itself forms the shape of the letters), where the 'v' and the 'b' are formed from the Visual Studio inifinity logo. In case you're having trouble visualizing that, here's a picture. Because I'm forming the letters...

Aug 27, 2007
Post comments count0
Post likes count0

Endgame (Matt Gertz)

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

Well, I’m back from vacation, pleasantly tired and yet relaxed at the same time.  I’m busy trying to dig out of e-mail, things are going well, Beta2 has been in your hands for several weeks, and I’ve got lots of great ideas to try out on this site.(That’s the theory, anyway.  In reality, I’m writing this post...

Jun 4, 2007
Post comments count0
Post likes count0

Deploying Applications with the InteropForms 2.0 toolkit

VBTeam
VBTeam

(Recently, we released the InteropForms 2.0 toolkit which allows you to add the richness of .net windows forms to your vb6 application.  We've gotten a fair number of questions from customers asking for more details on deployment, so this will hopefully answer most of your questions) As I'm sure you're aware, deploying VB6 COM based appli...

Jan 24, 2007
Post comments count0
Post likes count0

Extension methods and late binding (Extension Methods Part 4)

VBTeam
VBTeam

This is the fourth installment in my series of posts about extension methods. You can find links to the rest of the series here. Today I'm going to talk about extension methods and late binding. Essentially there isn't much to say about it, other than the fact that we don't support late bound execution of extension methods. For the most part this i...

Jan 19, 2007
Post comments count0
Post likes count0

Extension Methods (part 3)

VBTeam
VBTeam

In my previous 2 posts I talked about some of the benefits of extension methods and then delved into the details of our new binding rules for consuming them in your programs. Today I'm going to talk about some perils to be aware of when defining extension methods. First, however, I'm going to dig a little into the mechanics used by the compiler for...