This tutorial will teach you how to Populate DataGridView based on Combobox selected using C#.net and Microsoft SqlServer.
Import the Namespace
using System.Data.SqlClient;
Establish the database Connection
SqlConnection con = new SqlConnection("server=.;database=ads;user id=sa;password=123;"); SqlCommand cmd; SqlDataAdapter dr; DataSet ds;
if (comboBox1.SelectedItem.ToString() == "Students") { try { dataGridView1.Refresh(); con.Open(); DataTable dt = new DataTable(); dr = new SqlDataAdapter("select * from student", con); dr.Fill(dt); dataGridView1.DataSource = dt; con.Close(); } catch (Exception ex) { MessageBox.Show(ex.Message); } } else if (comboBox1.SelectedItem.ToString() == "Courses") { try { dataGridView1.Refresh(); con.Open(); DataTable dt = new DataTable(); dr = new SqlDataAdapter("select * from course", con); dr.Fill(dt); dataGridView1.DataSource = dt; con.Close(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…
Creating a responsive login form is a crucial skill for any web developer. In this…
In this tutorial will teach Laravel 12 CRUD API by step. Laravel 10 CRUD Application …
In this lesson we talk about laravel 12 image uploading and display the image step…
In this tutorial will teach Laravel 12 CRUD Application step by step. Laravel 12 CRUD…
Conditional statements in Python allow us to control the flow of execution based on conditions.…