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
4 days ago
by
Beth Massi
2
Comments
LightSwitch Community & Content Rollup–January 2012
Posted
11 days ago
by
Beth Massi
3
Comments
Calling Web Services to Validate Data in Visual Studio LightSwitch
Posted
14 days ago
by
Beth Massi
2
Comments
Beginning LightSwitch–Address Book Sample
Posted
18 days ago
by
Beth Massi
1
Comments
Using Different Edit Screens Based on Record Types (Table Inheritance)
Posted
24 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
>
data
Browse by Tags
ADO.NET Data Services
Article
Beginning LightSwitch Series
Community
DevCenter
Entity Framework
LightSwitch
LINQ
N-tier
OBA
Office
Screens
SharePoint
Speaking
SQL Server
Videos
Visual Basic
VS2005
VS2008
VS2010
VSTO
WCF
Winforms
WPF
XML
Blog Post:
Using Different Edit Screens Based on Record Types (Table Inheritance)
Beth Massi
I had a reader ask a question this week on how to use Visual Studio LightSwitch to open different Edit Detail screens based on the “type” of record. This is a very common thing to do especially for data models that use table inheritance (or sub-tables). For instance say we are building an application...
on
20 Jan 2012
Blog Post:
Creating Cascading Drop Down Lists in Visual Studio LightSwitch
Beth Massi
A common technique on data entry screens is using one “drop down list” (called an auto-complete box in LightSwitch) as a filter into the next. This limits the amount of choices that need to be brought down and guides the user into easily locating values. This technique is also useful if you have cascading...
on
12 Jan 2012
Blog Post:
Beginning LightSwitch Part 2: Feel the Love - Defining Data Relationships
Beth Massi
Welcome to Part 2 of the Beginning LightSwitch series ! In the last post we learned about tables, or entities, in LightSwitch and how to use the Data Designer to define them. If you missed it: Beginning LightSwitch Part 1: What’s in a Table? Describing Your Data In this article I want to focus on data...
on
8 Dec 2011
Blog Post:
Beginning LightSwitch Part 1: What’s in a Table? Describing Your Data
Beth Massi
Welcome to Part 1 of the Beginning LightSwitch series ! To get things started, we’re going to begin with one of the most important building blocks of a LightSwitch application, the table . Simply put, a table is a way of organizing data in columns and rows. If you’ve ever used Excel or another spreadsheet...
on
6 Dec 2011
Blog Post:
Using the Save and Query Pipeline to “Archive” Deleted Records
Beth Massi
Before Microsoft, I used to work in the health care industry building software for hospitals and health insurance companies. In all of those systems we had detailed audit trails (change logging), authorization systems, and complex business rules to keep patient data safe. One particular requirement that...
on
18 Nov 2011
Blog Post:
Common Validation Rules in LightSwitch Business Applications
Beth Massi
Checking the validity of data input is a common requirement for any application that interacts with humans (and other systems), particularly business applications. I’ve never seen or written a data-entry application without implementing common validation rules for inputting data. LightSwitch has many...
on
11 Nov 2011
Blog Post:
How to Connect to and Diagram your SQL Express Database in Visual Studio LightSwitch
Beth Massi
Visual Studio LightSwitch makes it easy to create and model database tables using the Data Designer . With this designer you have a simple interface into the Tables, Columns and Relationships that make up your data model. When you create tables this way, under the covers LightSwitch creates a SQL Express...
on
27 Oct 2011
Blog Post:
Filtering Lookup Lists with Large Amounts of Data on Data Entry Screens
Beth Massi
First off let me say WOW, it’s great to be back to blog writing! Sorry I have been away for a couple weeks – I’ve been working on a lot of cool stuff internally since I got back from my trip . And I know I have a loooooong list of article and video suggestions from all of you that I...
on
15 Sep 2011
Blog Post:
Relating and Editing Data from Multiple Data Sources on the Same Screen
Beth Massi
In my last article I showed how to connect LightSwitch to SharePoint data in order to pull users’ Task Lists into your LightSwitch applications. If you missed it: Using SharePoint Data in your LightSwitch Applications There we created a screen that pulled up the logged in users’ tasks from SharePoint...
on
11 Jul 2011
Blog Post:
How to Create a Simple Audit Trail (Change Log) in LightSwitch
Beth Massi
A common requirement in business applications is to capture changes to data records and save them in a history table of some sort. For instance, when an employee’s HR record is changed, you need to log the original and new field values as well as who made the changes so that there is a visible audit...
on
22 Jun 2011
Blog Post:
Build WPF Data Controls for Outlook Addins Easily with VS2010
Beth Massi
Last post I showed how to migrate our Northwind Outlook client to .NET 4 and Office 2010 . This Outlook Add-in displays order history information in an adjoining form region so sales associates can see that data immediately when communicating with customers. When we originally built this with Visual...
on
21 Dec 2009
Blog Post:
Building Occasionally Connected Smart Clients with WPF
Beth Massi
This month Dev Pro Connections has an article by Milind Lele on using Sync Services in a WPF application: Building Occasionally Connected Smart Clients with WPF With Sync Services and Visual Studio 2008 you can visually design your local data cache and have it automatically synchronize your data with...
on
2 Nov 2009
Blog Post:
Inserting Master-Detail Data into a SQL-Server Compact Edition Database
Beth Massi
Yesterday John posted on the Visual Studio Data blog how to Refresh the Primary Key Identity Column during an Insert Operation using SQL Server. In that post he shows how the DataSet designer sets up a batch Insert statement to retrieve identity keys automatically. A while back I wrote about how to insert...
on
15 Sep 2009
Blog Post:
New “How Do I” Videos Released on Entity Framework & WPF
Beth Massi
Yesterday we released a couple more videos onto the Visual Basic Developer Center on building WPF data-entry forms with Entity Framework: How Do I: Hook Up and Display Validation in WPF using Entity Framework? How Do I: Build a WPF Master-Detail Data Entry Form Using Entity Framework? That makes 5 videos...
on
26 Aug 2009
Blog Post:
N-Tier Application Patterns with Entity Framework
Beth Massi
This month’s MSDN Magazine has a particularly good article in there by Danny Simmons , Development Manager on the Entity Framework team, on N-Tier Application Patterns with Entity Framework that I recommend reading through. He explains the design considerations you need to take into account when...
on
5 Aug 2009
Blog Post:
Working with a Local Database File in Visual Studio
Beth Massi
In this post and video I’ve shown folks how to work with a local database file (.mdf, .mdb, .sdf) that resides directly inside your project in order to see updates made while debugging your application. If it looks like everything saves fine while debugging, but you can’t see the updates if you look...
on
31 Jul 2009
Blog Post:
Filtering Child DataTables Using TableAdapters
Beth Massi
Since my last post on filtering child collections using Entity Framework , I have had more than a few emails about how to load filtered child DataTables that are part of a master-detail relationship and then get them to save properly through the TableAdapters. Many people are running into the problem...
on
22 Jul 2009
Blog Post:
Master-Detail Data Binding in WPF with Entity Framework
Beth Massi
Today I thought I would talk about a really common scenario in data applications, creating a master-details (one-to-many) data entry form. I’ve written about WPF data binding and Entity Framework a lot in the past: Posts: Master-Details with Entity Framework Explicit Load Loading Data and...
on
14 Jul 2009
Blog Post:
WPF Data Binding Samples on Code Gallery
Beth Massi
One of the many samples released for Visual Studio 2010 Beta 1 that you should be aware of are examples of WPF data binding against Entity Data Models. You can find some easy to follow samples here: http://code.msdn.microsoft.com/WPFDatabinding This sample demonstrates how to create a WPF Forms solution...
on
17 Jun 2009
Blog Post:
Visual Studio 2010 Beta 1 – Everyone can download and play today!
Beth Massi
Here it is folks, Visual Studio 2010 Beta 1 has been released to the public today. Check out the Visual Studio 2010 and .NET Framework 4 Beta 1 site to download the Beta, submit product feedback on the Beta 1 Forums , report bugs on Connect , and find additional information. Also visit the Beta 1 walkthroughs...
on
20 May 2009
Blog Post:
Using TableAdapters to Insert Related Data into an MS Access Database
Beth Massi
I’ve posted before about how to use TableAdapters to update parent-child (master-detail) relationships against SQL server. It’s pretty straightforward and Visual Studio generates all the code for you to properly insert, update and delete your data. However if you’re using MS Access then there’s one thing...
on
14 May 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:
Notifying the UI when Entity References Change in Lookup Comboboxes
Beth Massi
Last week I wrote about how to data bind WPF lookup comboboxes to entities returned from the Entity Framework. I described that the key to this type of binding is setting the SelectedItem to the object reference itself on the navigation property instead of setting SelectedValue and SelectedValuePath...
on
4 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
Page 1 of 4 (78 items)
1
2
3
4