Windows Forms

How To Open and Read an Excel file into a ListView in C#
7/17/2024 1:55:30 AM  10.43K

To open and read an Excel spreadsheet into a ListView in a C# Windows Forms Application, you'll need to use the Microsoft.Office.Interop.Excel library, which allows you to interact with Excel files programmatically.

Read more
How to Create a Metro Login Form with SQL Database in C#
7/17/2024 1:03:10 AM  25.77K

Creating a Metro login form in a C# Windows Forms Application using Metro Framework and Dapper ORM with an SQL database involves several steps.

Read more
How to Create a Radial Menu in C#
7/16/2024 12:50:16 PM  14.43K

Creating and displaying a Radial Menu in a C# DevExpress Windows Forms application involves a few straightforward steps.

Read more
How to Export DataTable to PDF in C#
7/16/2024 9:38:09 AM  11.61K

Exporting data from a DataTable to a PDF using iTextSharp in a C# Windows Forms application involves several steps.

Read more
How to Export DataTable to CSV in C#
7/16/2024 9:36:47 AM  4.9K

Exporting a DataTable to a CSV file in a C# Windows Forms application involves iterating through the rows and columns of the DataTable and writing them to a CSV file.

Read more
How to Export DataTable to Excel without Interop in C#
7/16/2024 9:35:40 AM  14.42K

You can export a DataTable to an Excel file without using Interop by using the ClosedXML library in C#. ClosedXML is a powerful library that allows you to work with Excel files without having Excel installed on the machine.

Read more
How to Export data from DataTable to Xml in C#
7/16/2024 9:33:47 AM  6.49K

Exporting data from a DataTable to XML in a C# Windows Forms application is straightforward.

Read more
How to Insert Update Delete From Database in VB.NET
7/16/2024 9:31:47 AM  33.56K

Performing Insert, Update, and Delete operations in a VB.NET WinForms application using Entity Framework involves several steps.

Read more
How to Read Excel file and Import data from Excel to SQL Server in C#
7/16/2024 9:31:23 AM  31.79K

To read an Excel file and import data from Excel into SQL Server in C# Windows Forms Application using ExcelDataReader and Dapper ORM for database operations are excellent choices. Below are the steps you can follow.

Read more
How to Export data from DataTable to Excel in C#
7/16/2024 9:30:12 AM  15.44K

You can export data from a DataTable to an Excel file in a C# Windows Forms application using libraries like EPPlus or Microsoft Office Interop.

Read more