Windows Forms

How to generate QRCode in RDLC Report using C#
By Tan Lee Published on Jun 15, 2024 22.07K

To generate a QR code in an RDLC (Report Definition Language Client-side) report using C# in a Windows Forms application, you can follow these steps.

Read more
How to Read and Write csv file in C#
By Tan Lee Published on Jul 16, 2024 19.87K

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 Add Items To ListBox from TextBox in C#
By Tan Lee Published on May 22, 2024 21.76K

To add items from a TextBox to a ListBox in a C# Windows Forms application, you can do the following step.

Read more
How to make a WhatsApp Messenger in C#
By Tan Lee Published on Jun 01, 2017 10.42K

To create a WhatsApp messenger client in C# for sending and receiving messages, you need to use the WhatsApp API.

Read more
How to Change system date in C#
By Tan Lee Published on Jul 01, 2024 9.77K

To change the system date programmatically in a C# Windows Forms application, you can use the System.DateTime structure along with System.Diagnostics.Process to execute commands that change the system date.

Read more
How to use Wizard Control in C#
By Tan Lee Published on May 15, 2024 7.54K

To use a Wizard control in a C# Windows Forms Application using the AdvancedWizard library, you typically need to follow these steps.

Read more
How to Read an Excel File in C#
By Tan Lee Published on Jul 16, 2024 10.69K

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

Read more
How to use log4net for logging in C#
By Tan Lee Published on Jun 07, 2024 14.91K

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 more
How to get CheckedListBox selected values in C#
By Tan Lee Published on Dec 21, 2024 653

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 Export DataTable to Excel without Interop in C#
By Tan Lee Published on Jul 16, 2024 15.41K

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

Read more