Windows Forms
How to use log4net for logging in C#
By Tan Lee Published on Jun 07, 2024 15.11K
Using log4net in C# Windows Forms applications is a great way to incorporate logging functionality into your application for debugging and error tracking purposes.
Read moreHow to get CheckedListBox selected values in C#
By Tan Lee Published on Dec 21, 2024 741
In Windows Forms (WinForms), the CheckedListBox control provides a powerful way to display a list of items with checkboxes, allowing users to select multiple options simultaneously.
Read moreHow to Export DataTable to Excel without Interop in C#
By Tan Lee Published on Jul 16, 2024 15.55K
You can export a DataTable to an Excel file without using Interop by using the ClosedXML library in C#.
Read moreHow to Insert Update Delete data in Database from DataGridView in C#
By Tan Lee Published on Jul 25, 2017 14.58K
To manage Insert, Update, and Delete operations in a SQL database using a DataGridView in a C# Windows Forms application built with the Metro Framework (Modern UI), follow these steps.
Read moreHow to use Modern UI Metro Framework in C#
By Tan Lee Published on Jul 26, 2017 9.93K
Designing a modern UI for a WinForms application using the Metro Framework is a straightforward process.
Read moreHow to use DevExpress Themes/Skins in C#
By Tan Lee Published on Jun 18, 2017 12.5K
To use the DevExpress Skin Manager in a C# Windows Forms application, you need to follow a few steps to apply and customize the UI skin.
Read moreHow to Create a Metro Login form with SQL Server in C#
By Tan Lee Published on Jun 19, 2017 7.17K
To create a Metro-style login form in C# with SQL Server, follow these steps.
Read moreHow to Create CPU and Memory Monitor using Metro Modern UI in C#
By Tan Lee Published on Jun 03, 2017 8.54K
Creating a CPU and memory monitor in C# with the Metro Framework involves integrating system performance counters and a visually appealing user interface.
Read moreHow to Create a Metro Modern Flat UI Dashboard in C#
By Tan Lee Published on Jun 08, 2017 38.46K
Creating a Metro Modern Flat UI Dashboard in C# using the Metro Framework and Modern UI involves several steps.
Read moreHow To Open and Read an Excel file into a ListView in C#
By Tan Lee Published on Jul 17, 2024 11.09K
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