Latest Posts

How to pass ListView row data into another Form in C#
By Tan Lee Published on Jul 26, 2017 8.94K

To pass data from a ListView row to another form in C#, you can follow these steps.

Read more
How to use LINQ to SQL with Stored Procedures in C#
By Tan Lee Published on Jul 24, 2017 8.52K

An overview of using stored procedures with LINQ to SQL in C# Windows Forms

Read more
'Microsoft ACE OLEDB 12.0' provider is not registered on the local machine solution
By Tan Lee Published on May 30, 2017 4.53K

The error 'Microsoft ACE OLEDB 12.0' provider is not registered on the local machine usually occurs when the required Access Database Engine (ACE) provider is not installed or there is a mismatch between the bitness (32-bit or 64-bit) of your application and the ACE provider.

Read more
How to use Ribbon Control in C#
By Tan Lee Published on Apr 08, 2019 10.86K

To create a Ribbon form using the DevExpress Ribbon Control in a C# .NET Windows Forms application, you need to follow a series of steps to set up the DevExpress Ribbon Control and configure its UI elements.

Read more
How to Insert Update Delete View and Search data from MySQL in C#
By Tan Lee Published on Jun 01, 2017 9.38K

To perform basic CRUD operations in C# with MySQL, you can use the MySQL.Data package, which provides a set of classes to connect to a MySQL database.

Read more
How to use SplashScreenManager in C#
By Tan Lee Published on Jul 23, 2017 9.79K

DevExpress SplashScreenManager is a powerful tool for displaying splash screens or wait forms in your application.

Read more
How to make a Countdown Timer in C#
By Tan Lee Published on Jul 11, 2017 17.7K

Creating a countdown timer in C# can be done using a System.Timers.Timer.

Read more
How to Create a Splash Screen with Progress Bar in C#
By Tan Lee Published on May 16, 2024 7.7K

Creating a splash screen with a progress bar in a C# Windows Forms Application involves a few steps.

Read more
How to Display selected Row from DataGridView to TextBox in C#
By Tan Lee Published on Jul 25, 2017 5.3K

How to Display selected Row from DataGridView to TextBox in C#

Read more
How to Get Checked Items In a CheckedListBox in C#
By Tan Lee Published on Jul 25, 2017 9.07K

In C#, you can retrieve the checked items from a CheckedListBox by iterating through its CheckedItems collection.

Read more
How Delete multiple Rows from DataGridView based on CheckBox selection in C#
By Tan Lee Published on Jul 25, 2017 9.25K

To delete multiple rows from a DataGridView in C# based on checkbox selection, you can follow these steps.

Read more
How to Recaptcha using tesseract ocr in C#
By Tan Lee Published on Jun 13, 2024 17.67K

To use Tesseract OCR for reCAPTCHA in a C# Windows Forms Application, you can do the following step.

Read more