Sign In
MSDN Blogs
Microsoft Blog Images
More ...
Blog - Title
Browse by Tags
MSDN Blogs
>
The Visual Basic Team
>
All Tags
>
jonathan aneja
The Visual Basic Team
A group blog from members of the VB team
Executive Bloggers
S. Somasegar
Jason Zander
Brian Harry
Scott Guthrie
Visual Studio
Visual Studio
Blend
LightSwitch
Line of Business Apps by Beth Massi
Setup & Install by Heath Stewart
Application Lifecycle Management
Visual Studio ALM
Languages
Visual Basic
Visual C#
Visual C# by Eric Lippert
Visual C++
Visual F#
JavaScript
.NET Framework
.NET Framework
.NET Parallel Programming
ADO.NET
ASP.NET by Scott Hanselman
Base Class Library (BCL)
Silverlight
WCF Data Services
Workflow
Platform Development
Internet Explorer
SharePoint
Office
Web
Windows 8
Windows Store
Windows Azure
Windows Phone
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Subscribe
Comments
Contact
Recent posts
Kinect SDK v1.5 - Now with VB Samples !!!
Posted
8 days ago
by
VBTeam
0
Comments
Async Targeting Pack for Visual Studio 11, now available for .NET 4 and Silverlight 5
Posted
1 month ago
by
VBTeam
4
Comments
Visual Basic 11 Beta Available for Download!
Posted
3 months ago
by
VBTeam
14
Comments
New VB XNA Sample - showing Xbox, Windows and Phone targetting
Posted
5 months ago
by
VBTeam
2
Comments
Tags
Anders Hejlsberg
async
asynchronous programming
await
Beth Massi
Data_Design
Dustin Campbell
Hidden Gems in VB10
IDE
Interview
IQueryable
Karen Liu
LINQ Cookbook
LINQ/VB9
Lisa Feigenbaum
Paul Vick
Spot the Bug!
TechEd2009
Timothy Ng
VB
VB2005
VB2008
VB2010
VB6_Migration/Interop
Visual Basic
Related resources
Visual Studio Developer Center
Visual Studio Product Website
Translate this page
Powered by
Microsoft® Translator
Menu
Blog Home
Email Blog Author
RSS for posts
RSS for comments
Atom
Archives
Archives
May 2012
(1)
April 2012
(1)
February 2012
(1)
December 2011
(1)
November 2011
(3)
October 2011
(2)
September 2011
(3)
August 2011
(3)
June 2011
(2)
May 2011
(3)
April 2011
(7)
March 2011
(7)
February 2011
(5)
January 2011
(2)
December 2010
(1)
November 2010
(2)
October 2010
(1)
September 2010
(1)
June 2010
(5)
May 2010
(2)
April 2010
(3)
March 2010
(1)
February 2010
(2)
January 2010
(3)
December 2009
(2)
November 2009
(6)
October 2009
(51)
September 2009
(3)
August 2009
(2)
July 2009
(55)
June 2009
(53)
May 2009
(13)
April 2009
(8)
March 2009
(13)
February 2009
(7)
January 2009
(3)
December 2008
(28)
November 2008
(25)
October 2008
(24)
September 2008
(16)
August 2008
(8)
July 2008
(6)
June 2008
(7)
May 2008
(10)
April 2008
(3)
March 2008
(20)
February 2008
(4)
January 2008
(14)
December 2007
(18)
November 2007
(19)
October 2007
(11)
September 2007
(12)
August 2007
(9)
July 2007
(21)
June 2007
(18)
May 2007
(12)
April 2007
(14)
March 2007
(15)
February 2007
(2)
January 2007
(6)
November 2006
(3)
October 2006
(3)
September 2006
(4)
July 2006
(1)
June 2006
(3)
April 2006
(2)
March 2006
(1)
January 2006
(1)
December 2005
(2)
November 2005
(10)
October 2005
(1)
September 2005
(6)
July 2005
(7)
June 2005
(4)
May 2005
(1)
April 2005
(7)
March 2005
(3)
January 2005
(2)
November 2004
(2)
October 2004
(2)
September 2004
(1)
August 2004
(7)
July 2004
(6)
June 2004
(1)
May 2004
(9)
More
▼
Less
▲
Tagged Content List
Blog Post:
Visual Basic 11 Beta Available for Download!
VBTeam
As you may have read in Jason’s announcement , today we announced that Visual Studio 11 Beta is now available for download . This is a huge release for Visual Basic as it provides full platform support for building Windows 8 Metro style apps, a first-class asynchronous programming experience, and...
on
28 Feb 2012
Blog Post:
Using Entity Framework in Silverlight with Visual Basic
VBTeam
If you’re looking for ways to get started with Entity Framework 4.0 in Visual Basic then be sure to check out this month’s issue of CODE Magazine. In it the Entity Framework team has put together a walkthrough that shows how to use EF4 in Silverlight, and best of all the entire article’s...
on
31 Dec 2010
Blog Post:
Hidden Gems in VB2010 – Serializing Objects that Raise Events (Jonathan Aneja)
VBTeam
By now you've likely heard about the major new features coming in VB 2010, but there's also a number of smaller additions in the language and IDE that might not be as readily noticeable. "Hidden Gems" will be a multi-part series where we'll explore some of these smaller enhancements. First up - serialization...
on
14 Dec 2009
Blog Post:
Spot the Bug! – The Key to using Anonymous Types (Jonathan Aneja)
VBTeam
This one’s going to be long, but for those of you who’ve felt the first 3 in this series were too easy I promise this one’s tougher J . Let’s say you want to list all the customers from a table in a ComboBox, and update the UI based on which one is selected. To do this we’ll need to bring back...
on
16 Nov 2009
Blog Post:
Spot the Bug! – Is it in VB or XAML? (Jonathan Aneja)
VBTeam
What’s wrong with the following WPF code? Class Window1 Sub OK_Click(sender As Object , e As RoutedEventArgs) Handles OK.Click MsgBox( "Button Clicked" ) End Sub End Class < Window x : Class ="Window1" xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation...
on
12 Nov 2009
Blog Post:
Spot the Bug! – Much ado about Nothing… Part 2! (Jonathan Aneja)
VBTeam
In yesterday’s post we saw that the use of the wrong comparison operator with Nothing in an If block can lead to surprising results. Let’s look at a slightly different case today: Dim x As Integer = Nothing If x = Nothing Then MsgBox( "A true statement - we land here" ) Else MsgBox...
on
5 Nov 2009
Blog Post:
Spot the Bug! – Much Ado about Nothing… (Jonathan Aneja)
VBTeam
Microsoft has this neat mailing list called “Spot the Bug” where developers can send interesting snippets of code that look correct but actually have subtle bugs in them. The puzzles are a lot of fun and I’ve always thought it’d be a fun thing to try here on the team blog. Over the past year or so I...
on
3 Nov 2009
Blog Post:
Properties vs Fields – Why Does it Matter? (Jonathan Aneja)
VBTeam
The other day I got an email from a developer asking an interesting question about VB10’s Auto-implemented Properties feature. “I am, however, somewhat confused regarding the properties feature you mentioned - i.e. turning 11 lines of get/set/backing variable into one line. Wouldn't this be exactly the...
on
4 Sep 2009
Blog Post:
Dynamic Searching using LINQ - Dataset + Joins
VBTeam
About two years ago I posted some code that shows how to dynamically construct LINQ queries at runtime . On average there's a couple questions per month about trying it in some edge case, and usually the support already exists within the API. Recently though someone posted a question that has to do with...
on
10 Jul 2009
Blog Post:
TechEd Video: Future Directions for Visual Basic, by Anders Hejlsberg and Jonathan Aneja
VBTeam
As part of the new VB/C# co-evolution strategy , Visual Studio Technical Fellow Anders Hejlsberg has broadened his role. In addition to being Chief Architect for C#, he now sets the direction for both the VB.NET and C# languages. At TechEd, Anders participated in both the VB.NET and C# language presentations...
on
20 Jun 2009
Blog Post:
TechEd North America, here we come! (Lisa Feigenbaum)
VBTeam
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. DTL04-INT Strategies to Upgrade Your Microsoft Visual Basic...
on
30 Apr 2009
Blog Post:
Spain User Group Tour: All Good Things Must Come to An End (Lisa Feigenbaum)
VBTeam
After three and a half days visiting user groups through Spain, Jon and I have flown back to the US. We got to meet some great people and had lots of fun talking about VB. The slide decks that we used on the trip are attached at the end of this post. PPT: Deep Dive on VB 9.0 (link to be added shortly...
on
25 Nov 2008
Blog Post:
Visual Basic en España (Lisa Feigenbaum)
VBTeam
This week Jonathan Aneja and I are traveling from city to city, and presenting to VB.Net user groups in Spain. We began the tour in Barcelona where we were speaking at TechEd EMEA, and will finish in Madrid. VB MVP Pep Lluis Blano organized the entire itinerary! Here are the topics for the presentations...
on
17 Nov 2008
Blog Post:
Community Interview with Jonathan Aneja (Beth Massi)
VBTeam
Continuing the community interviews from our Italian Visual Basic MVP Alessandro Del Sole , this time we interview Jonathan Aneja, VB Compiler Program Manager. Remember that you can take a look at the Visual Basic Team page for pictures and bios and visit the home page of the Visual Basic Developer Center...
on
10 Oct 2008
Blog Post:
Where is the VB Team going to be over the next few months? (Lisa Feigenbaum)
VBTeam
We have quite a few trips coming up over the next couple months, and we want to connect with you while we’re on the road. Here is our plan. Let us know where we can find you. ;-) October 6-7, 2008 Software Development Conference 2008 : http://www.sdc.nl/ Beth Massi October 8-10, 2008...
on
28 Sep 2008
Blog Post:
VB 2008 Language Deep Dive - Presentation Materials (Jonathan Aneja)
VBTeam
Last week I got the chance to visit the Toronto .NET User Group and give a talk on all the great new language features in VB2008. It was great to see so much excitement a round LINQ and especially XML Literals ! The slides and demo code are posted at the link below; here’s the session abstract...
on
21 Aug 2008
Blog Post:
How LINQ to Dataset works in VB (Jonathan Aneja)
VBTeam
LINQ at its core requires any data source to be queryable , which basically means it must implement IEnumerable. (It’s actually a bit more complicated than that, for a full explanation see section 11.21.2 of the Visual Basic 9.0 Language Specification ). Now when working with LINQ to Dataset we have...
on
14 May 2008
Blog Post:
Using LINQ to Dataset in an .aspx page (Jonathan Aneja)
VBTeam
Recently I got a customer question about how to use LINQ to Dataset in an .aspx file. The compiler was complaining that it couldn't find the AsEnumerable method that allows LINQ to work over a DataTable ("AsEnumerable is not a member of 'DataTable'"). The code he sent looks correct, so why is the compiler...
on
13 May 2008
Blog Post:
Launching External Tools from inside Visual Studio (Jonathan Aneja)
VBTeam
Visual Studio has a small but extremely useful feature that allows you to hook external tools directly into the IDE’s Tools menu. All you have to do is click Tools->External Tools… and then you can add your own custom menu items that will launch a specified program. On a typical day I’ll probably...
on
27 Nov 2007
Blog Post:
Option Strict [On|Off|SortOf]
VBTeam
Yesterday I got a question from a developer asking whether or not we could add something called "Option Strict Warn" to the language. This would give a developer a warning when using something like late binding or an implicit conversion, rather than disabling it altogether (through an error). As it...
on
25 Sep 2007
Blog Post:
Implementing Dynamic Searching Using LINQ
VBTeam
A common requirement in forms-over-data applications is that users be able to search by any combination of fields to construct a dynamic query at run time. For example, the search feature in this application allows the user to find all records that meet criteria defined on multiple columns: ...
on
29 Aug 2007
Blog Post:
LINQ Cookbook, Recipe 7: Selecting Pages of Data from Northwind (Jonathan Aneja)
VBTeam
Ingredients: - Visual Studio 2008 (Beta2 or Higher) - Connection to Northwind database Categories: LINQ-To-Objects, LINQ-To-SQL Instructions: · Create a new Windows Forms project with a Northwind DataContext (for step-by-step instructions on how to do this please see Recipe #6 )...
on
12 Jul 2007
Blog Post:
LINQ Cookbook, Recipe 3: Find all the prime numbers in a given range (Jonathan Aneja)
VBTeam
Ingredients: - Visual Studio 2008 (Beta2 or Higher) Categories: LINQ-To-Objects Instructions: - Open Visual Studio 2008, and Click ‘File/New Project’. Find and double-click the ‘Console Application’ Icon - Add the following code: Module Module1 Sub Main() Dim primes...
on
28 Jun 2007
Blog Post:
Slide deck for Interop Toolkit Webcast
VBTeam
Thanks to everyone who was able to make it out for this morning's webcast. We covered how to use the Interop Toolkit 2.0 to upgrade VB6 applications to VB.NET, how to deploy hybrid applications, and finally we touched on some other great interop resources available on MSDN. As promised the slide deck...
on
6 Jun 2007
Blog Post:
So what does ComClass actually do?
VBTeam
I came across a really cool article yesterday by James Ashley, which shows some of the cool things you can do with the Interop Forms Toolkit 2.0 . The three VB6 examples cover consuming a WebService (complete with a Dilbert icon showing up in the VB6 toolbox!), implementing multithreading using the BackgroundWorker...
on
1 Jun 2007
Page 1 of 2 (29 items)
1
2