VOS.VirtProgressVisualStudioDataGridFormsApp
Visual Studio Windows DataGrid Form Application
This article details the steps required to create a simple Visual Studio 2008 Windows Form application, with associated
- Launch the Visual Studio 2008 SP1 IDE.
- Create a Web Application project by going to the File menu in Visual Studio and choosing New Project.
- When the New Project window appears, choose either Visual Basic or Visual C# as the programming language.
- Within the language category, click on Windows and select Windows Form Application from the right-hand panel.
- Choose a name for the project, for example
VirtWindowsFormApplication, and click OK.
- In the Toolbox, expand Data Controls, and drag the
DataGridView control onto the form.
- Click on the little arrow in the top right of the
DataGridView control to load the DataGridView Task menu.
- Click on the Choose Data Source list box.
- Click on the Add Project Data Source link to connect to a data source.
- In the Data Source Configuration Wizard dialog Choose Data Source Type page, select the Database data source type and click Next.
- In the Data Source Configuration Wizard dialog Choose your Data Connection page, select the New Connection button.
- In the Choose Data Source dialog, select the
OpenLink Virtuoso Data Source from the list and click Continue.
- In the Connection Properties dialog, specify the hostname, portno, username, and password for the target Virtuoso Server.
- Select the Select Database From List radio button and choose isports from the drop down list.
- Press the Test Connection dialog to verify that the database is accessible.
- Leave the default connect string name -- isportsConnectionString -- and click Next.
- From the list of tables returned for the isports database, select the Salesrep table to be associated with the
DataGridView control.
- The columns names of the select table will be displayed in the the
DataGridView.
- Resize the Form and
DataGridView to allow all columns to be visible if possible.
- To test the application, simply hit Ctrl+F5 within Visual Studio or select Start Debugging from the Debug menu.
- The data from the JOBS table will be displayed in the
DataGrid.
The task is now complete.