Sign In
The Visual Basic Team
A group blog from members of the VB team Visual Basic Developer Center | How-Do-I Videos | Power Packs | Code Samples | Team Interviews | Team Webcasts
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
Alan Berman
Alexandre Moura
Amanda Silver
Anders Hejlsberg
Anthony D. Green
async
asynchronous programming
Avner Aharoni
await
Beth Massi
Bill Horst
ClickOnce
Converting SQL to LINQ
Corrina Barber
Daniel Walzenbach
Data_Design
Debugger
Deployment
Did you know?
DLR
Doug Rothaus
Encoding
IDE
I'm A VB!
Interview
IQueryable
Jared Parsons
Joe Binder
John Rivard
John Stallo
Jonathan Aneja
Karen Liu
Kathleen McGrath
Kevin Halverson
Kinnect
Kit George
LINQ Cookbook
LINQ/VB9
Lisa Feigenbaum
Luca Bolognese
Lucian Wischik
Mary Lee
Matt Gertz
metadata
Microframework
Milind Lele
MSI
multi-threading
Netduino
Office Development
Pages
parallel programming
Patrick Dengler
Paul Vick
Paul Yuknewicz
PDC2008
Performance
PInvoke
Power Packs
Roslyn
Sarika Calla
Scott Wisniewski
screen savers
Shyam Namboodiripad
Silverlight
Silverlight 4 Firestarter
Smart Devices
SMB
Sophia Salim
Spot the Bug!
Spotty Bowles
SQL
Steve Stein
Syntax Visualizer
task cancellation
TDD
TechEd2008
TechEd2009
threads
Timothy Ng
Todd Apley
Troubleshooting
Tyler Whitney
VB
VB XML Cookbook
VB_Express
VB2005
VB2008
VB2010
VB6_Migration/Interop
Visual Basic
Visual Basic History
Visual Studio
WCF
Web
Windows Phone
Workflow
WPF
XML
Young Joo
Browse by Tags
MSDN Blogs
>
The Visual Basic Team
>
All Tags
>
doug rothaus
Tagged Content List
Blog Post:
Troubleshooting Errors When Embedding Type Information (Doug Rothaus)
VBTeam
Visual Studio 2010 has a new feature, Embed Interop Types , that can simplify application deployment and solve those pesky issues that can arise when using COM Interop and Primary Interop Assemblies (PIAs). If you’ve ever had to ship multiple versions of an application that automates Microsoft...
on
11 Jun 2010
Blog Post:
VB XML Cookbook, Recipe 7: Enumerating Large XML Files (Doug Rothaus)
VBTeam
VB XML Cookbook, Recipe 7: Enumerating Large XML Files (Doug Rothaus) It’s been a while since I wrote one of these XML cookbook entries. Here’s some info on a common problem: Really big XML files. I’m going to show you two things in this recipe. The first is a tip on reading very...
on
7 Jun 2010
Blog Post:
Fun With Dynamic Objects (Doug Rothaus)
VBTeam
A while back, I remember being asked if there was a simple way to expose a source XML document as an object with properties. That is, if the root XML element had a child element <Name>Doug</Name> , then the object would have a Name property that was a string and returned “Doug”. The catch...
on
20 Jan 2010
Blog Post:
Testing Events for Nothing/Null (Doug Rothaus)
VBTeam
While helping some Windows API folks with some sample code this week, I stumbled upon...uh...I mean “carefully researched” an issue that you might find handy. You may be aware that the RaiseEvent statement automatically checks to verify if an event handler exists before raising the event. If the event...
on
25 Sep 2009
Blog Post:
Implicit Line Continuation (Kathleen McGrath)
VBTeam
In the second part of my interview with Doug Rothaus, he describes the new implicit line continuation feature in Visual Basic 2010. Learn about the most common scenarios that no longer require the underscore character (_) in the topic, Statements in Visual Basic . See the Video: implicit Line Continuation...
on
19 Jun 2009
Blog Post:
Auto-Implemented Properties (Kathleen McGrath)
VBTeam
In this interview, Doug Rothaus, a programming writer on the Visual Studio User Education team, describes the auto-implemented properties in Visual Basic 2010. He also demonstrates some of the code examples in his Help topic: Auto-Implemented Properties . See the Video: Auto-Implement Properties . ...
on
12 Jun 2009
Blog Post:
Community Interview with Doug Rothaus (Beth Massi)
VBTeam
This past month we've been posting interviews with the team from our Italian Visual Basic MVP Alessandro Del Sole . This time we have Doug Rothaus, a writer on the documentation side. Doug has blogged up an XML cookbook here on the team blog with a bunch of "recipes" on how to use different...
on
11 Nov 2008
Blog Post:
VB XML Cookbook, Recipe 6: Writing an XSLT Transform in VB (Doug Rothaus)
VBTeam
Most XSLT programmers are familiar with this XSLT transform to copy an XML file. <? xml version = " 1.0 " encoding = " utf-8 " ?> < xsl:stylesheet version = " 1.0 " xmlns:xsl = " http://www.w3.org/1999/XSL/Transform " > < xsl:output method = " xml " indent = " yes " /> ...
on
6 Oct 2008
Blog Post:
VB XML Cookbook, Recipe 5: The “Halloween” Problem (Doug Rothaus)
VBTeam
In the last two XML cookbook entries, we talked about the technique of using the ReplaceWith method to perform an identity transform. While this technique may meet your needs, it can introduce a problem in your code commonly referred to as the “Halloween” problem. Let’s take a look at what the problem...
on
8 May 2008
Blog Post:
VB XML Cookbook, Recipe 4: Get Inner XML from the Nodes Property (Doug Rothaus)
VBTeam
Recipe 3 showed one way to work with mixed XML content using the XML Descendant axis property and the ReplaceWith method. This is one way to do an identity transform and we’ll look at another method in a later post. There is a key capability not mentioned in Recipe 3 that you will need for fully-functioning...
on
1 May 2008
Blog Post:
VB XML Cookbook, Recipe 3: Identity Transforms (Doug Rothaus)
VBTeam
An identity transform in XSLT does just what the name implies: replace the identity of an element or attribute with a new identity. Identity transforms are especially critical when dealing with XML markup that is less rigid in its structure. Consider a documentation structure for news articles. Whenever...
on
25 Apr 2008
Blog Post:
VB XML Cookbook, Recipe 2: Descendants and Ancestors (Doug Rothaus)
VBTeam
This entry in the cookbook shows how you can access descendant and ancestor elements in an XML document using Visual Basic, XML Axis properties, and LINQ to XML objects. Descendants Visual Basic provides XML Axis properties that enable you to easily refer to child nodes and attributes. As is often...
on
19 Mar 2008
Blog Post:
VB XML Cookbook, Recipe 1: XML Transformations using XML Literals (Doug Rothaus)
VBTeam
I was working on a blog entry about replacing XSLT transforms with Visual Basic XML Literals. As the entry progressed, I noticed that it was really, really long. So, Avner Aharoni and I talked things over and we decided to break it up into multiple entries and start a series, much like the LINQ Cookbook...
on
21 Feb 2008
Blog Post:
LINQ Cookbook, Recipe 12: Calculate the Standard Deviation (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ to Objects Introduction: LINQ Cookbook, Recipe 11 showed how you can use LINQ queries to perform calculations on sets of data using a set of standard aggregate functions such as Average , and Sum . In this recipe,...
on
18 Dec 2007
Blog Post:
LINQ Cookbook, Recipe 11: Desktop Search Statistics (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ to DataSet Introduction: You can use aggregate functions in LINQ queries to perform calculations on sets of data. Visual Basic includes a set of standard aggregate functions for LINQ queries: All , Any , Average ,...
on
13 Dec 2007
Blog Post:
LINQ Cookbook, Recipe 10: Pre-compiling Queries for Performance (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ to SQL Introduction: As we add cookbook entries, we will include performance improvement tips where appropriate. Here’s a tip that you can use with LINQ to SQL to speed up queries that you will call numerous times...
on
6 Nov 2007
Blog Post:
LINQ Cookbook, Recipe 9: Dynamic Sort Order (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ-To-XML Introduction: You can use the Order By clause to easily sort the results of a LINQ query in Visual Basic. A common requirement for sorted data, however, is that the user be able to choose the fields that the...
on
17 Oct 2007
Blog Post:
LINQ Cookbook, Recipe 8: Querying XML Using LINQ (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ-To-XML Instructions: · Create a new Console Application in Visual Basic. · Create an RSS document. Add the following code to Sub Main . Dim rss = <? xml version = " 1.0 " ?> < rss version = " 2.0...
on
1 Oct 2007
Page 1 of 1 (18 items)