Search

How to set Filter Criteria with multi conditions in C#
By Tan Lee Published on Dec 06, 2024 443

To set multi-condition filter criteria in a DevExpress GridControl in C#, you can use the ColumnView.ActiveFilterCriteria property, which allows you to specify complex filter conditions by combining multiple conditions using logical operators like AND, OR.

Read more
How to Read Excel file and Import data from Excel to SQL Server in C#
By Tan Lee Published on Jul 16, 2024 33.29K

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 make a File Explorer in C#
By Tan Lee Published on Jul 15, 2017 11.57K

Creating a File Explorer in C# using Windows Forms involves building a UI with components such as WebBrowser, and potentially a TextBox or Label for displaying the file path.

Read more
How to mark a method as obsolete or deprecated in C#
By Tan Lee Published on Dec 04, 2024 421

In C#, you can mark a method as obsolete or deprecated using the [Obsolete] attribute.

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

How to Insert Update Delete View and Search data from MS Access in C#

Read more
How to Use Multiple Color in RichTextBox using C#
By Tan Lee Published on May 24, 2017 5.82K

To use multiple colors in a RichTextBox in C#, you can use the SelectionColor property to change the color of the selected text.

Read more
How to Call the Base Constructor in C#
By Tan Lee Published on Dec 02, 2024 385

In C#, you can call a base class constructor from a derived class using the base keyword.

Read more
How to Print Invoice in C#
By Tan Lee Published on Jun 18, 2017 12.78K

To create an invoice, receipt, or order using DevExpress XtraReport in C#, you will need to follow a few steps.

Read more
How to Insert Update Delete and View data from SQL Database using NPoco ORM in C#
By Tan Lee Published on Jun 18, 2017 8.21K

How to Insert, Update, Delete and View Student Profile data from SQL database using NPoco ORM, Stored Procedure, Metro Framework in C#

Read more
How to Print Text in a Windows Form Application Using C#
By Tan Lee Published on May 23, 2017 13.72K

Printing text in a Windows Forms application involves using the PrintDocument class and its associated events.

Read more