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
>
winforms
Browse by Tags
Article
Community
Data
DevCenter
Entity Framework
LINQ
N-tier
Speaking
SQL Server
VB6
Videos
Visual Basic
VS2005
VS2008
VS2010
WCF
WPF
Blog Post:
Visual Basic Power Packs also included with Visual Studio 2010
Beth Massi
If you’re like me and used to having line & shape controls , PrintForm and a handy DataRepeater as part of your toolbox then you’ll be excited to know that these controls are also going to be installed with Visual Studio 2010. On Friday, Yunfeng Dong mentioned on the VS Data team blog that the VB...
on
27 Jul 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:
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:
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:
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:
LINQ to SQL N-Tier Smart Client - Part 3 Database Transactions
Beth Massi
In my previous posts this week I showed how to build a simple distributed application with a Windows client, a WCF hosted middle-tier and a data access layer that used LINQ to SQL: LINQ to SQL N-Tier Smart Client - Part 1 Building the Middle-Tier LINQ to SQL N-Tier Smart Client - Part 2 Building the...
on
16 Apr 2008
Blog Post:
LINQ to SQL N-Tier Smart Client - Part 2 Building the Client
Beth Massi
In my last post we built the service and data access layer for our LINQ to SQL N-Tier application. In this post we'll walk through building a very simple Windows client form that works with our middle-tier. Adding the Service Reference Now that we have our middle-tier built it's time to add the...
on
14 Apr 2008
Blog Post:
LINQ to SQL N-Tier Smart Client - Part 1 Building the Middle-Tier
Beth Massi
In my previous posts on LINQ to SQL I showed how to build LINQ to SQL classes and set up the data binding in your Windows applications. If you missed them: Related Data Binding and ComboBoxes with LINQ to SQL Creating Lookup Lists with LINQ to SQL One-To-Many (Master-Detail) Forms with LINQ...
on
12 Apr 2008
Blog Post:
Simple Validation with LINQ to SQL Classes
Beth Massi
In the last few posts on LINQ to SQL I've showed how to set up an object model using the O/R designer and how to handle a couple data binding scenarios with Comboboxes here and here . Last post on this topic we implemented a one-to-many data entry form and I showed how to work with stored procs as well...
on
25 Feb 2008
Blog Post:
One-To-Many (Master-Detail) Forms with LINQ to SQL
Beth Massi
In previous posts this month I showed how to use LINQ to SQL classes with a couple different Combobox data binding scenarios. (You can read those articles here and here .) Today I'm going to show you how to create a one-to-many data entry form (and we'll use a couple Combobox lookup lists as well). I...
on
19 Feb 2008
Blog Post:
Creating Lookup Lists with LINQ to SQL
Beth Massi
In yesterday's post I showed you how to bind LINQ to SQL classes to a Combobox in order to filter records on a one-to-many form. Today I want to show you how how you can use a Combobox as a lookup list in order to edit values on a record. We'll be building on yesterday's example. So to recap, we have...
on
7 Feb 2008
Blog Post:
Related Data Binding and ComboBoxes with LINQ to SQL
Beth Massi
In a previous post I showed how to set up related data binding using ComboBoxes against DataSets and a loyal reader asked how this would be done using LINQ and Visual Studio 2008. I assume he meant LINQ to SQL in this case, because remember LINQ can be used over DataSets too -- you just have to call...
on
6 Feb 2008
Blog Post:
Using Data Across Multiple Windows Forms
Beth Massi
Recently I've had more than a few questions about how to handle working with data across multiple forms. If you've watched my Forms over Data video series you know how to create a database , connect to it , save your data properly , and work with data in your code . In this post I'll expand upon those...
on
1 Oct 2007
Blog Post:
Binding Multiple Combo Boxes to the Same Data Source
Beth Massi
Recently the VB Team received a customer bug submitted through Connect that had to do with binding multiple combo boxes to the same data source. The customer was reporting that once a selection was made in one combo, the other combos were also changing. The resolution was "By Design" because of the way...
on
19 Sep 2007
Blog Post:
Resizing Images Stored in SQL-Server
Beth Massi
In SQL-Server we can store images inside database tables directly using the Image column type. And with .NET 2.0 data binding it can automatically convert these images (stored as byte arrays) into System.Drawing.Image classes for you. For instance, say you have a table called Pictures that has a column...
on
28 Aug 2007
Blog Post:
Line and Shape Controls For Visual Basic Just Released
Beth Massi
The VB Team just released an updated version of the Visual Basic Power Packs on the VB Developer Center that includes a new set of controls for Visual Studio 2005 that allow you to draw lines, rectangle and oval shapes on your Windows Forms. These controls encapsulate many of the graphics methods that...
on
13 Aug 2007
Blog Post:
Forms Over Data Video Series - Two More Videos Released
Beth Massi
I just released two more videos ( #15 , #16 ) in the Forms Over Data video series . One is on understanding data binding and how it works from database all the way to the controls you see on forms. We talk about the relationship between the TableAdapter, the BindingSource and the DataSet and I show how...
on
1 Aug 2007
Blog Post:
Object Binding Series - Just Added One More!
Beth Massi
I just added a new video ( #4 ) to the Object Binding Series on filtering your custom objects -- based on customer request -- so keep them coming! The code is also attached . Enjoy!
on
1 Aug 2007
Blog Post:
Object Binding Video Series is Live!
Beth Massi
This how-to video series is focused on more advanced data binding techniques using object binding in Visual Basic 2005. The series walks through creating business objects and how to associate them in one-to-many relationships, how to provide searching capabilities and how to enable sorting. Download...
on
25 Jun 2007
Blog Post:
Forms over Data Video Series #2 is Live!
Beth Massi
I just uploaded more videos to Microsoft Downloads! I wanted to post the direct links here and the matching code downloads for all of you immediately even though MSDN will be creating a pretty landing page like this one for them this week, probably tomorrow or Wednesday. (I'll update this post when that...
on
25 Jun 2007
Blog Post:
Building a Secure Login Form (Parameterized Queries Part 2)
Beth Massi
In my first post on parameterized queries I built a simple login form that really was a contrived example meant to showcase how to use the TableAdapter Configuration Wizard to configure a parameterized query. However, since I opened myself up here, I felt it socially responsible to show how to make this...
on
7 Jun 2007
Blog Post:
Many-to-Many Data Binding
Beth Massi
In my Forms over Data videos series I show you how to create a one-to-many data entry form in video #3. Recently, I've had a few people ask how to create a form that displays a many-to-many relationship so I thought I'd post on how to do that today. You can actually think of a many-to-many relationship...
on
30 May 2007
Blog Post:
Creating a Parameterized Query
Beth Massi
I've been asked by a couple readers on how to pass parameters into a SQL statement to your database using the TableAdapters. I actually created a video on how to do this in the context of a search query ( play video | download video | entire series ). It's really easy to do this using the TableAdapter...
on
25 May 2007
Blog Post:
DataSources and Data Binding
Beth Massi
Today at DevTeach I packed the house with my ever popular "DataSources and Data Binding" talk. Last year was also a full room and as D'Arcy points out here , the other speakers this year should have hired a circus act to compete :-). That's the nature of data binding, it's a very popular topic because...
on
15 May 2007
Blog Post:
Forms over Data Video Series -- What Next?
Beth Massi
Yesterday I posted the first 8 videos of the Visual Basic Forms over Data "How-to" video series on MSDN. These videos are for those who are just starting out with databases and Windows Forms data binding. I plan on continuing the series with more intermediate topics like custom object binding, adding...
on
5 May 2007
Page 1 of 2 (29 items)
1
2