Effortlessly Load Data into DataGridView using C#

  Рет қаралды 1,089

Ka-Dev Tips

Ka-Dev Tips

Күн бұрын

Пікірлер: 7
@kadevtips
@kadevtips 4 ай бұрын
Part 2 : Search Data in Datagridview - Checkout this video -> kzbin.info/www/bejne/mpTWh62FgqqDjas
@vorapobautomation9760
@vorapobautomation9760 3 ай бұрын
Dear Sir How to search Data in Datagridview if i use CSV file ?
@vorapobautomation9760
@vorapobautomation9760 3 ай бұрын
How to Insert Update Delete data in Database from DataGridView ?
@vorapobautomation9760
@vorapobautomation9760 3 ай бұрын
How to load Data From Notepad (.CSV) to DataGridView in C# Windows Form Application ?
@kadevtips
@kadevtips 3 ай бұрын
Hi, Please read my comment in the other comment thread. Thank you.
@vorapobautomation9760
@vorapobautomation9760 3 ай бұрын
How to load Data From Notepad (.CSV) to DataGridView in C# Windows Form Application ?
@kadevtips
@kadevtips 3 ай бұрын
Hi there! You can try using the following code to load data from a CSV file into a DataGridView: private void btnLoadCSV_Click(object sender, EventArgs e) { string filePath = "path_to_your_csv_file.csv"; // Specify the path to your CSV file DataTable dataTable = LoadCSV(filePath); dataGridView1.DataSource = dataTable; } private DataTable LoadCSV(string filePath) { DataTable dt = new DataTable(); try { using (StreamReader sr = new StreamReader(filePath)) { string[] headers = sr.ReadLine().Split(','); // Reading headers foreach (string header in headers) { dt.Columns.Add(header); } while (!sr.EndOfStream) { string[] rows = sr.ReadLine().Split(','); DataRow dr = dt.NewRow(); for (int i = 0; i < headers.Length; i++) { dr[i] = rows[i]; } dt.Rows.Add(dr); } } } catch (Exception ex) { MessageBox.Show("Error: " + ex.Message); } return dt; } Make sure to replace "path_to_your_csv_file.csv" with the actual path to your CSV file. This code will read the CSV file and display the data in a DataGridView. If you encounter any issues, feel free to ask for further help.
Convert html table to JSON file in a few clicks
1:02
Shiji Pan
Рет қаралды 15
ТЫ В ДЕТСТВЕ КОГДА ВЫПАЛ ЗУБ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 3,5 МЛН
МЕНЯ УКУСИЛ ПАУК #shorts
00:23
Паша Осадчий
Рет қаралды 2,4 МЛН
Random Emoji Beatbox Challenge #beatbox #tiktok
00:47
BeatboxJCOP
Рет қаралды 63 МЛН
They Chose Kindness Over Abuse in Their Team #shorts
00:20
I migliori trucchetti di Fabiosa
Рет қаралды 12 МЛН
Inserting 10 Million Records in SQL Server with C# and ADO.NET (Efficient way)
6:45
Programming with Felipe Gavilan
Рет қаралды 21 М.
Solving one of PostgreSQL's biggest weaknesses.
17:12
Dreams of Code
Рет қаралды 213 М.
C# DataGridView Pagination | Windows Form Application
11:24
Ka-Dev Tips
Рет қаралды 2,3 М.
How to Create Login Screen in Wpf with Sql DataBase
18:27
CodAffection
Рет қаралды 149 М.
SQLc is the perfect tool for those who don't like ORMs
28:11
Dreams of Code
Рет қаралды 102 М.
How to load ComboBox with data from sql server database using C#
19:58
Fix System.OutOfMemoryException in DataGridView Using C#
10:57
ТЫ В ДЕТСТВЕ КОГДА ВЫПАЛ ЗУБ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 3,5 МЛН