Windows Forms

How to read .csv file in C#
7/16/2024 8:56:14 AM  29.79K

To read a CSV file into a DataTable and display it in a DataGridView in a C# Windows Forms application, you can follow these steps.

Read more
How to read excel file in C#
7/16/2024 8:55:14 AM  10.09K

To read Excel files (.xls or .xlsx) using the ExcelDataReader library in a C# application, follow these steps.

Read more
How to Read and Write csv file in C#
7/16/2024 8:54:47 AM  19K

To read CSV data into a DataGridView and write data back to a CSV file using the CsvHelper library in a C# Windows Forms application, follow these steps.

Read more
How to change connection string in App.config dynamically in C#
7/16/2024 8:53:48 AM  34.24K

To change the ConnectionString at runtime in a C# Windows Forms application using App.config, you typically follow these steps.

Read more
How to Create a Wait Form Dialog in C#
7/16/2024 8:52:11 AM  30.44K

Creating a wait dialog in a C# Windows Forms application can enhance user experience by providing feedback during long-running operations.

Read more
How to Create a backup SQL Server in C#
7/16/2024 8:51:10 AM  8.96K

Creating a full database backup in a C# Windows Forms application involves using SQL Server Management Objects (SMO) from the Microsoft.SqlServer.Smo assembly.

Read more
How to Display an Image in Report Viewer using C#
7/16/2024 8:50:37 AM  18.31K

To display an image in an RDLC report within a C# Windows Forms application, follow these steps.

Read more
How to Insert Update Delete and View data from SQL Database in C# using ADO.NET
7/16/2024 8:37:21 AM  33.11K

To perform insert, update, and delete operations in a DataGridView in a C# Windows Forms Application using ADO.NET with Metro Framework, you'll need to follow these steps.

Read more
How to send SMS messages in C#
7/16/2024 8:36:53 AM  19.87K

To send SMS messages to mobile phones via the internet using the Vianett API in a C# Windows Forms Application, you'll need to follow these steps.

Read more
How to Create a Login Form with SQL Server in C#
7/16/2024 8:36:07 AM  11.97K

Creating a login form in a C# Windows Forms Application that interacts with SQL Server using Entity Framework involves several steps.

Read more