Windows Forms

How to get CheckedListBox selected values in C#
12/21/2024 4:06:27 AM  44

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 more
How to use Advanced Filter DataGridView in C#
12/18/2024 8:52:14 AM  25.12K

Filtering a DataGridView by columns in C# using the Advanced DataGridView control involves several steps including setting up the control, handling user input for filtering, and applying filters dynamically.

Read more
How to Create a simple TCP/IP chat application in C#
12/13/2024 1:09:49 PM  83.32K

Creating a simple TCP/IP chat application using the SimpleTCP library in a C# Windows Forms application involves several steps.

Read more
How to Export DataTable to Excel without Interop in C#
12/13/2024 1:47:48 AM  14.66K

You can export a DataTable to an Excel file without using Interop by using the ClosedXML library in C#.

Read more
How to Insert Update Delete data in Database from DataGridView in C#
12/12/2024 3:25:05 PM  13.56K

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 more
How to use Modern UI Metro Framework in C#
12/12/2024 3:08:04 PM  9.13K

Designing a modern UI for a WinForms application using the Metro Framework is a straightforward process.

Read more
How to use DevExpress Themes/Skins in C#
12/12/2024 2:51:43 PM  11.67K

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 more
How to Create a Metro Login form with SQL Server in C#
12/12/2024 2:50:33 PM  6.62K

To create a Metro-style login form in C# with SQL Server, follow these steps.

Read more
How to Create CPU and Memory Monitor using Metro Modern UI in C#
12/12/2024 2:41:41 PM  8.2K

Creating a CPU and memory monitor in C# with the Metro Framework involves integrating system performance counters and a visually appealing user interface.

Read more
How to Create a Metro Modern Flat UI Dashboard in C#
12/12/2024 2:31:50 PM  37.11K

Creating a Metro Modern Flat UI Dashboard in C# using the Metro Framework and Modern UI involves several steps.

Read more