Sign In
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
Beth Massi - Sharing the goodness that is VB
LightSwitch Developer Center
|
VB Developer Center
|
Office Developer Center
|
How Do I Videos
|
Team Interviews on Channel 9
Common Tasks
Blog Home
Email Blog Author
About
RSS for posts
RSS for comments
Search
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
Recent Posts
LightSwitch Screen Tips: Scrollbars and Splitters
Posted
3 days ago
by
Beth Massi
2
Comments
LightSwitch Community & Content Rollup–January 2012
Posted
10 days ago
by
Beth Massi
3
Comments
Calling Web Services to Validate Data in Visual Studio LightSwitch
Posted
13 days ago
by
Beth Massi
2
Comments
Beginning LightSwitch–Address Book Sample
Posted
16 days ago
by
Beth Massi
1
Comments
Using Different Edit Screens Based on Record Types (Table Inheritance)
Posted
23 days ago
by
Beth Massi
5
Comments
Tags
ADO.NET Data Services
Article
Channel9
Community
Data
DevCenter
Entity Framework
LightSwitch
LINQ
Office
Personal
SharePoint
Silverlight
Speaking
SQL Server
Videos
Visual Basic
VS2005
VS2008
VS2010
VSTO
Webcast
Winforms
WPF
XML
Archives
Archives
February 2012
(2)
January 2012
(5)
December 2011
(7)
November 2011
(4)
October 2011
(7)
September 2011
(5)
August 2011
(6)
July 2011
(6)
June 2011
(7)
May 2011
(5)
April 2011
(4)
March 2011
(5)
February 2011
(10)
January 2011
(6)
December 2010
(5)
November 2010
(4)
October 2010
(6)
September 2010
(6)
August 2010
(8)
July 2010
(2)
June 2010
(8)
May 2010
(6)
April 2010
(9)
March 2010
(8)
February 2010
(9)
January 2010
(6)
December 2009
(5)
November 2009
(10)
October 2009
(12)
September 2009
(8)
August 2009
(9)
July 2009
(11)
June 2009
(10)
May 2009
(11)
April 2009
(12)
March 2009
(8)
February 2009
(10)
January 2009
(9)
December 2008
(11)
November 2008
(9)
October 2008
(11)
September 2008
(13)
August 2008
(10)
July 2008
(13)
June 2008
(7)
May 2008
(9)
April 2008
(12)
March 2008
(9)
February 2008
(13)
January 2008
(10)
December 2007
(8)
November 2007
(14)
October 2007
(25)
September 2007
(11)
August 2007
(15)
July 2007
(16)
June 2007
(13)
May 2007
(22)
April 2007
(21)
March 2007
(5)
Important Links
Visual Basic Developer Center
Visual Basic Forums
Visual Studio Interviews on Channel 9
Visual Basic How To Videos
MSDN Blogs
>
Beth Massi - Sharing the goodness that is VB
>
All Tags
>
linq
Browse by Tags
ADO.NET Data Services
Article
ASP.NET
Channel9
Community
Data
DevCenter
Entity Framework
Interop Toolkit
N-tier
Office
Speaking
SQL Server
VB6
Videos
Visual Basic
VS2005
VS2008
VS2010
VSTO
WCF
Webcast
Winforms
WPF
XML
Blog Post:
How To Send HTML Email from a LightSwitch Application
Beth Massi
A while back Paul Patterson wrote an awesome step-by-step blog post based on a forum question on how to send an automated email using System.Net.Mail from LightSwitch . If you missed it here it is: Microsoft LightSwitch – Send an Email from LightSwitch This is a great solution if you want...
on
27 Jan 2011
Blog Post:
Using Microsoft Word to Create Reports For LightSwitch (or Silverlight)
Beth Massi
Note: This post has been updated for Beta 2 on 3/24/2011 LightSwitch has a really nice feature on data grids that allow you to export them to Excel if running as a Desktop application (out of browser). This gives you a basic way of getting data out of the system to create reports or do further...
on
10 Sep 2010
Blog Post:
Open XML SDK 2.0 Released!
Beth Massi
Many programs that need to process documents often require manipulation of the file formats directly and doing that through the Office component object model (COM) won’t scale very well. It also requires that Microsoft Office be installed to run. A better route in a lot of these cases is to use the Open...
on
17 Mar 2010
Blog Post:
Using Projections with Data Services in Visual Studio 2010
Beth Massi
Starting in Visual Studio 2008 Service Pack 1, you can create ADO.NET Data Services to easily expose data models via RESTful web services. So if you are building a remote CRUD data access layer then this is a technology that you're probably using or are looking into. I’ve written a lot about about data...
on
2 Mar 2010
Blog Post:
Silicon Valley Code Camp Oct. 3-4 : Schedule is up!
Beth Massi
As I mentioned before , I’ll be speaking this weekend at Silicon Valley Code Camp ( http://siliconvalley-codecamp.com/ ). This is a FREE event at at Foothill College and it’s not just Microsoft technologies. A lot of great speakers will be there too. The schedule is up so check it out and mark the ones...
on
28 Sep 2009
Blog Post:
Merging Text & Photos into a Word Document using Open XML SDK
Beth Massi
Yesterday I posted about how we could create a letter generator (mail merge) that took data from a database to create a Word 2007 document using the System.IO.Packaging class. I showed how to take data from Northwind using a single LINQ query to create XDocument objects representing letters to customers...
on
24 Sep 2009
Blog Post:
Mail Merging Into a Single Word Document Using XML Literals
Beth Massi
With the release of Microsoft Office 2007 we can work with a much simpler, standard, XML format called Open XML which opens the door for many types of applications that cannot work via COM. What if you needed to build a scalable web service that processes many documents in high volume? What if you wanted...
on
23 Sep 2009
Blog Post:
DevProConnections Article: Taking Advantage of LINQ and XML in Microsoft Office 2007
Beth Massi
This month I have an article on DevProConnections: Taking Advantage of LINQ and XML in Microsoft Office 2007 In this article, I talk about how a lot of applications that need to take advantage of Microsoft Office can do so without going through COM. Many programs that need to process documents...
on
17 Aug 2009
Blog Post:
Channel 9 Interview: LINQ Language Deep Dive with Visual Studio 2008
Beth Massi
Ever wonder what really happens when you write a simple LINQ query? Dim query = From row In db.Customers _ Where row.Country = "Canada" _ Select row A lot of new language features went into the compilers in Visual Studio 2008 to make even this simple LINQ query work. In this interview...
on
22 Jul 2009
Blog Post:
Filtering Entity Framework Collections in Master-Detail Forms
Beth Massi
Last post I talked about how to get WPF data binding to work with master-detail entity collections. I had a couple readers ask me how they could filter the child collection instead of bringing them all down so in this post I’d like to show how you could do that. It’s actually pretty easy. Customer (Master...
on
16 Jul 2009
Blog Post:
Good Times at DevTeach, Vancouver
Beth Massi
Last week I spoke at DevTeach in Vancouver which was held at the beautiful Four Seasons in downtown. I love this Canadian conference because the attendees are great – super friendly and social, and ask a lot of great questions. I mostly interacted with folks building applications for the government or...
on
19 Jun 2009
Blog Post:
Using the WPF ObservableCollection with EF Entities
Beth Massi
The ObservableCollection is a special WPF collection that provides proper notifications to the UI when items are added, removed, or the list is refreshed because it implements INotifyCollectionChanged . It’s common to use this collection (or inherit from it) to contain your business objects you want...
on
8 May 2009
Blog Post:
Data Binding WPF Lookup Combobox Values to EF Entities
Beth Massi
It’s extremely common to have to hook up lookup tables on your data entry forms in order to populate foreign keys in a database. I’ve talked about how to do this in Winforms and WPF with Datasets and LINQ to SQL before: How Do I: Create a Lookup Combobox in WPF? How Do I: Create a Master-Detail Data...
on
30 Apr 2009
Blog Post:
Tally Rows in a DataSet that Match a Condition
Beth Massi
Today I got a question that comes up often in data application programming about how to count rows in a DataSet that matched a condition. The DataSet may be bound to a DataGridView or other list control and it’s tempting to start looking at the control to see if you can coax it into returning what you...
on
27 Apr 2009
Blog Post:
dnrTV: More Fun with Office and XML Literals
Beth Massi
Yesterday Carl posted another dnrTV show with yours truly. This is a follow up from the last show where I went over the Open XML SDK and LINQ to XML in order to manipulate and query Office documents. Last show focused on CustomXML parts and Word content controls. In this show I demonstrate how to create...
on
20 Apr 2009
Blog Post:
ADO.NET Data Services - Intercepting Queries and Adding Validation
Beth Massi
Last few posts I've been building a WPF client against ADO.NET Data Services, if you missed them: Using ADO.NET Data Services ADO.NET Data Services - Building a WPF Client ADO.NET Data Services - Enforcing FK Associations and a Fix for Deleting Entities Today I want to show you how we...
on
21 Jan 2009
Blog Post:
Community Article: Scaling ADO.NET DataTables
Beth Massi
We just released a new community article onto the Visual Basic Developer Center by one of our MVPs, Jeff Certain , called Scaling ADO.NET DataTables . In this article Jeff shows shows us how to query and aggregate data using the built in DataTable methods as well as LINQ to DataSets. He compares the...
on
17 Dec 2008
Blog Post:
I'm Speaking at Silicon Valley Code Camp on Saturday Nov. 8th
Beth Massi
There are over 1100 people registered for the Silicon Valley code camp this year! Wow! That's a couple hundred more than last year. This is a free event people, so there's no excuse not to come out to Foothill college this year. And it's not all Microsoft technologies (of course not --we're in Silicon...
on
5 Nov 2008
Blog Post:
Editing Data from Two Tables in a Single DataGridView
Beth Massi
I've had a lot of questions lately on how to display data from two separate tables in the database into a single DataGridView for editing. It sure would be nice if all our data was in a single table, but in reality most of the time it's not. Basically the problem is that we want one single table (entity...
on
15 Oct 2008
Blog Post:
SDN Conference Day 2
Beth Massi
Today I woke up at the crack of dawn because I had an 8:30 AM session. Okay maybe not quite the crack, but for me it was early . Especially after a night of socializing. That's a really cool thing about conferences here, the attendees love to go out with you after dinner and uh.. socialize. ;-) There...
on
8 Oct 2008
Blog Post:
First Day at SDN Conference
Beth Massi
I'm here in the Netherlands in a town called Noordwijkerhout near Amsterdam at the SDN Conference with a lot of great speakers and sessions . I took these shots while the attendees were in session. There's good food, great vendors and lots of entertainment -- XBoxes, bowling, pin-pong, and lots...
on
7 Oct 2008
Blog Post:
MSDN Magazine - Dynamic Data Entry With XML Literals
Beth Massi
Check out the latest news on the VB Dev Center . I'm finally headlining myself ;-) I'm in the October issue of MSDN Magazine . I've been managing the content for the Basic Instincts column for a little over a year now where we rotate writers from the VB Team. This month is my birthday month so I decided...
on
1 Oct 2008
Blog Post:
Data on the Smart Client Talk at Bay.NET UG
Beth Massi
Last night I spoke to SF Bay.NET user's group on Data Binding in Winforms and WPF, focusing on Line-of-Business (LOB) application scenarios. I showed how you can use the same data sources with Winforms and WPF, walking through binding scenarios with DataSets, custom object collections and some LINQ to...
on
21 Aug 2008
Blog Post:
Channel 9 Interview: XML Schema Explorer in Visual Studio 2008 SP1
Beth Massi
I just posted an interview on Channel 9 with Yang Xiao , a tester on the VB IDE. In this interview Yang shows us the new XML Schema Explorer in Visual Studio 2008 Service Pack 1 . This new window is invoked when you right-click on an XML literal element or namespace and select "Show in XML Schema...
on
15 Aug 2008
Blog Post:
Accessing Open XML Document Parts with the Open XML SDK
Beth Massi
About a month ago the Open XML SDK 1.0 (June 08 update) was released . The SDK provides strongly typed document part access to Word 2007, Excel 2007 and PowerPoint 2007 documents. The SDK has been a CTP for a while, but last month version 1.0 was finally released. So I installed this baby last week and...
on
30 Jul 2008
Page 1 of 5 (106 items)
1
2
3
4
5