Pass data between forms

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

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 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.

Prerequisites

In order to complete this walkthrough, you need:

  • Access to the Northwind sample database.

Create the Windows Application

To create the new Windows project

  1. From the File menu, create a new project.

  2. Name the project PassingDataBetweenForms.

  3. Select Windows Forms Application, and click OK. For more information, see Client Applications.

    The PassingDataBetweenForms project is created, and added to Solution Explorer.

Create the data source

To create the data source

  1. On the Data menu, click Show Data Sources.

  2. In the Data Sources window, select Add New Data Source to start the Data Source Configuration wizard.

  3. Select Database on the Choose a Data Source Type page, and then click Next.

  4. On the Choose a database model page, verify that Dataset is specified, and then click Next.

  5. 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.

  6. If your database requires a password and if the option to include sensitive data is enabled, select the option and then click Next.

  7. On the Save connection string to the Application Configuration file page, click Next.

  8. On the Choose your Database Objects page, expand the Tables node.

  9. 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.

Create the first form (Form1)

You can create a data-bound grid (a DataGridView control), by dragging the Customers node from the Data Sources window onto the form.

To create a data-bound grid on the form

Create the second form (Form2)

To create a second form to pass the data to

  1. From the Project menu, choose Add Windows Form.

  2. Leave the default name of Form2, and click Add.

  3. Drag the main Orders node from the Data Sources window onto Form2.

    A DataGridView and a tool strip (BindingNavigator) for navigating records appear on Form2. A NorthwindDataSet, CustomersTableAdapter, BindingSource, and BindingNavigator appear in the component tray.

  4. 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

To create a TableAdapter query

  1. Double-click the NorthwindDataSet.xsd file in Solution Explorer.

  2. Right-click the OrdersTableAdapter, and select Add Query.

  3. Leave the default option of Use SQL statements, and then click Next.

  4. Leave the default option of SELECT which returns rows, and then click Next.

  5. Add a WHERE clause to the query, to return Orders based on the CustomerID. 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 = ?.

  6. Click Next.

  7. For the Fill a DataTableMethod Name, type FillByCustomerID.

  8. Clear the Return a DataTable option, and then click Next.

  9. Click Finish.

Create a method on Form2 to pass data to

To create a method to pass data to

  1. Right-click Form2, and select View Code to open Form2 in the Code Editor.

  2. Add the following code to Form2 after the Form2_Load method:

    internal void LoadOrders(String CustomerID)
    {
        ordersTableAdapter.FillByCustomerID(northwindDataSet.Orders, CustomerID);
    }
    
    Friend Sub LoadOrders(ByVal CustomerID As String)
        OrdersTableAdapter.FillByCustomerID(NorthwindDataSet.Orders, CustomerID)
    End Sub
    

Create a method on Form1 to pass data and display Form2

To create a method to pass data to Form2

  1. In Form1, right-click the Customer data grid, and then click Properties.

  2. In the Properties window, click Events.

  3. Double-click the CellDoubleClick event.

    The code editor appears.

  4. Update the method definition to match the following sample:

    private void customersDataGridView_DoubleClick(object sender, EventArgs e)
    {
        System.Data.DataRowView SelectedRowView;
        NorthwindDataSet.CustomersRow SelectedRow;
    
        SelectedRowView = (System.Data.DataRowView)customersBindingSource.Current;
        SelectedRow = (NorthwindDataSet.CustomersRow)SelectedRowView.Row;
    
        Form2 OrdersForm = new Form2();
        OrdersForm.LoadOrders(SelectedRow.CustomerID);
        OrdersForm.Show();
    }
    
    Private Sub CustomersDataGridView_DoubleClick() Handles CustomersDataGridView.DoubleClick
    
        Dim SelectedRowView As Data.DataRowView
        Dim SelectedRow As NorthwindDataSet.CustomersRow
    
        SelectedRowView = CType(CustomersBindingSource.Current, System.Data.DataRowView)
        SelectedRow = CType(SelectedRowView.Row, NorthwindDataSet.CustomersRow)
    
        Dim OrdersForm As New Form2
        OrdersForm.LoadOrders(SelectedRow.CustomerID)
        OrdersForm.Show()
    End Sub
    

Run the Application

To run the application

  • Press F5 to run the application.

  • Double-click a customer record in Form1 to open Form2 with that customer's orders.

Next Steps

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:

See Also

Bind Windows Forms controls to data in Visual Studio