1. Design Form      Steps:   a. Choose Datagridview tool in tool kit  b. Choose new datasource from datagridview  c. After choosing particular database and data table the design of form will be look a like in this above acreenshot   2. Class view for data table                            3. Code created automatically     using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;  using System.Data.SqlClient; using System.Data.Sql;   namespace DataDisplayForm {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();                 }          private void Form1_Load(object sender, EventArgs e)         {             // TODO: This line of code loads data into the 'nameDBDataSet.namedata' table. You can move, or remove it, as needed.             this.namedataTableAdapter.Fill(this.nameDBDataSet.name...