title | ms.date | ms.topic | dev_langs | helpviewer_keywords | ms.assetid | author | ms.author | manager | ms.workload | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Pass data between forms |
11/04/2016 |
how-to |
|
|
78bf038b-9296-4fbf-b0e8-d881d1aff0df |
ghogen |
ghogen |
jillfra |
|
This walkthrough provides step-by-step instructions for passing data from one form to another. Using the customers and orders tables from Northwind, one form allows users to select a customer, and a second form displays the selected customer's orders. This walkthrough shows how to create a method on the second form that receives data from the first form.
Note
This walkthrough demonstrates only one way to pass data between forms. There are other options for passing data to a form, including creating a second constructor to receive data, or creating a public property that can be set with data from the first form.
Tasks illustrated in this walkthrough include:
-
Creating a new Windows Forms Application project.
-
Creating and configuring a dataset with the Data Source Configuration Wizard.
-
Selecting the control to be created on the form when dragging items from the Data Sources window. For more information, see Set the control to be created when dragging from the Data Sources window.
-
Creating a data-bound control by dragging items from the Data Sources window onto a form.
-
Creating a second form with a grid to display data.
-
Creating a TableAdapter query to fetch orders for a specific customer.
-
Passing data between forms.
This walkthrough uses SQL Server Express LocalDB and the Northwind sample database.
-
If you don't have SQL Server Express LocalDB, install it either from the SQL Server Express download page, or through the Visual Studio Installer. In the Visual Studio Installer, SQL Server Express LocalDB can be installed as part of the Data storage and processing workload, or as an individual component.
-
Install the Northwind sample database by following these steps:
-
In Visual Studio, open the SQL Server Object Explorer window. (SQL Server Object Explorer is installed as part of the Data storage and processing workload in the Visual Studio Installer.) Expand the SQL Server node. Right-click on your LocalDB instance and select New Query.
A query editor window opens.
-
Copy the Northwind Transact-SQL script to your clipboard. This T-SQL script creates the Northwind database from scratch and populates it with data.
-
Paste the T-SQL script into the query editor, and then choose the Execute button.
After a short time, the query finishes running and the Northwind database is created.
-
-
In Visual Studio, on the File menu, select New > Project.
-
Expand either Visual C# or Visual Basic in the left-hand pane, then select Windows Desktop.
-
In the middle pane, select the Windows Forms App project type.
-
Name the project PassingDataBetweenForms, and then choose OK.
The PassingDataBetweenForms project is created, and added to Solution Explorer.
-
To open the Data Sources window, on the Data menu, click Show Data Sources.
-
In the Data Sources window, select Add New Data Source to start the Data Source Configuration wizard.
-
Select Database on the Choose a Data Source Type page, and then click Next.
-
On the Choose a database model page, verify that Dataset is specified, and then click Next.
-
On the Choose your Data Connection page, do one of the following:
-
If a data connection to the Northwind sample database is available in the drop-down list, select it.
-
Select New Connection to launch the Add/Modify Connection dialog box.
-
-
If your database requires a password and if the option to include sensitive data is enabled, select the option and then click Next.
-
On the Save connection string to the Application Configuration file page, click Next.
-
On the Choose your Database Objects page, expand the Tables node.
-
Select the Customers and Orders tables, and then click Finish.
The NorthwindDataSet is added to your project, and the Customers and Orders tables appear in the Data Sources window.
You can create a data-bound grid (a xref:System.Windows.Forms.DataGridView control), by dragging the Customers node from the Data Sources window onto the form.
-
Drag the main Customers node from the Data Sources window onto Form1.
A xref:System.Windows.Forms.DataGridView and a tool strip (xref:System.Windows.Forms.BindingNavigator) for navigating records appear on Form1. A NorthwindDataSet, CustomersTableAdapter, xref:System.Windows.Forms.BindingSource, and xref:System.Windows.Forms.BindingNavigator appear in the component tray.
Create a second form to pass data to.
-
From the Project menu, choose Add Windows Form.
-
Leave the default name of Form2, and click Add.
-
Drag the main Orders node from the Data Sources window onto Form2.
A xref:System.Windows.Forms.DataGridView and a tool strip (xref:System.Windows.Forms.BindingNavigator) for navigating records appear on Form2. A NorthwindDataSet, CustomersTableAdapter, xref:System.Windows.Forms.BindingSource, and xref:System.Windows.Forms.BindingNavigator appear in the component tray.
-
Delete the OrdersBindingNavigator from the component tray.
The OrdersBindingNavigator disappears from Form2.
Add a TableAdapter query to Form2 to load orders for the selected customer on Form1.
-
Double-click the NorthwindDataSet.xsd file in Solution Explorer.
-
Right-click the OrdersTableAdapter, and select Add Query.
-
Leave the default option of Use SQL statements, and then click Next.
-
Leave the default option of SELECT which returns rows, and then click Next.
-
Add a WHERE clause to the query, to return
Orders
based on theCustomerID
. The query should be similar to the following:SELECT OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry FROM Orders WHERE CustomerID = @CustomerID
[!NOTE] Verify the correct parameter syntax for your database. For example, in Microsoft Access, the WHERE clause would look like:
WHERE CustomerID = ?
. -
Click Next.
-
For the Fill a DataTableMethod Name, type
FillByCustomerID
. -
Clear the Return a DataTable option, and then click Next.
-
Click Finish.
-
Right-click Form2, and select View Code to open Form2 in the Code Editor.
-
Add the following code to Form2 after the
Form2_Load
method:[!code-vbVbRaddataDisplaying#1] [!code-csharpVbRaddataDisplaying#1]
-
In Form1, right-click the Customer data grid, and then click Properties.
-
In the Properties window, click Events.
-
Double-click the CellDoubleClick event.
The code editor appears.
-
Update the method definition to match the following sample:
[!code-csharpVbRaddataDisplaying#2] [!code-vbVbRaddataDisplaying#2]
-
Press F5 to run the application.
-
Double-click a customer record in Form1 to open Form2 with that customer's orders.
Depending on your application requirements, there are several steps you may want to perform after passing data between forms. Some enhancements you could make to this walkthrough include:
-
Editing the dataset to add or remove database objects. For more information, see Create and configure datasets.
-
Adding functionality to save data back to the database. For more information, see Save data back to the database.