C# - How To Display DataGridView Selected Row Values On Another Form Using C#
In This C# Tutorial We Will See How To Get And Show DataGridView Selected Row Data To Another Form On GridView Click Using CSharp Programming Language.
Project Source Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
DataTable table = new DataTable();
// add columns to datatable
table.Columns.Add("Id", typeof(int));
table.Columns.Add("First Name", typeof(string));
table.Columns.Add("Last Name", typeof(string));
table.Columns.Add("Age", typeof(int));
// add rows to datatable
table.Rows.Add(1, "First A", "Last A", 10);
table.Rows.Add(2, "First B", "Last B", 20);
table.Rows.Add(3, "First C", "Last C", 30);
table.Rows.Add(4, "First D", "Last D", 40);
table.Rows.Add(5, "First E", "Last E", 50);
table.Rows.Add(6, "First F", "Last F", 60);
table.Rows.Add(7, "First G", "Last G", 70);
table.Rows.Add(8, "First H", "Last H", 80);
dataGridView1.DataSource = table;
}
private void dataGridView1_Click(object sender, EventArgs e)
{
Form2 myForm = new Form2();
myForm.TextBox1.Text = dataGridView1.CurrentRow.Cells[0].Value.ToString();
myForm.TextBox2.Text = dataGridView1.CurrentRow.Cells[1].Value.ToString();
myForm.TextBox3.Text = dataGridView1.CurrentRow.Cells[2].Value.ToString();
myForm.TextBox4.Text = dataGridView1.CurrentRow.Cells[3].Value.ToString();
myForm.ShowDialog();
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
DataTable table = new DataTable();
// add columns to datatable
table.Columns.Add("Id", typeof(int));
table.Columns.Add("First Name", typeof(string));
table.Columns.Add("Last Name", typeof(string));
table.Columns.Add("Age", typeof(int));
// add rows to datatable
table.Rows.Add(1, "First A", "Last A", 10);
table.Rows.Add(2, "First B", "Last B", 20);
table.Rows.Add(3, "First C", "Last C", 30);
table.Rows.Add(4, "First D", "Last D", 40);
table.Rows.Add(5, "First E", "Last E", 50);
table.Rows.Add(6, "First F", "Last F", 60);
table.Rows.Add(7, "First G", "Last G", 70);
table.Rows.Add(8, "First H", "Last H", 80);
dataGridView1.DataSource = table;
}
private void dataGridView1_Click(object sender, EventArgs e)
{
Form2 myForm = new Form2();
myForm.TextBox1.Text = dataGridView1.CurrentRow.Cells[0].Value.ToString();
myForm.TextBox2.Text = dataGridView1.CurrentRow.Cells[1].Value.ToString();
myForm.TextBox3.Text = dataGridView1.CurrentRow.Cells[2].Value.ToString();
myForm.TextBox4.Text = dataGridView1.CurrentRow.Cells[3].Value.ToString();
myForm.ShowDialog();
}
}
}
///////////////OUTPUT: