Search

How to Export DataTable to PDF in C#
By Tan Lee Published on Jul 16, 2024 12.46K

Exporting data from a DataTable to a PDF using iTextSharp in a C# Windows Forms application involves several steps.

Read more
How to use Error Provider in C#
By Tan Lee Published on Jun 15, 2024 20.08K

In C# Windows Forms, the ErrorProvider component is used to provide visual indications of errors or warnings associated with user input controls, such as textboxes or comboboxes.

Read more
Comparing IP Addresses in C#
By Tan Lee Published on Jan 16, 2025 536

Comparing two IP addresses in .NET can be surprisingly tricky.

Read more
How to use Advanced Filter DataGridView in C#
By Tan Lee Published on Mar 19, 2024 28.06K

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 and use User Control in C#
By Tan Lee Published on Jul 16, 2024 63.01K

Creating a user control in a C# Windows Forms application is a straightforward process.

Read more
How to Create a System tray Notification in C#
By Tan Lee Published on Jul 16, 2024 10.02K

To create a system tray application in C# using the NotifyIcon control, how to minimize your application to the system tray, display a balloon tip with custom title and description, and ensure proper handling of application exit.

Read more
Querying with LINQ
By Tan Lee Published on Feb 22, 2025 100

LINQ (Language Integrated Query) is an essential feature in C# that simplifies data querying from various sources in a standardized manner.

Read more
Optimizing Performance with Compiled Queries in LINQ
By Tan Lee Published on Feb 22, 2025 95

In modern software development, application performance is often a top priority to ensure smooth user experiences and efficient scalability. When using LINQ (Language Integrated Query) in C#, developers can enhance query performance with a feature called compiled queries.

Read more
Understanding Single, SingleOrDefault, First, and FirstOrDefault in LINQ
By Tan Lee Published on Feb 22, 2025 142

LINQ (Language Integrated Query) in C# is a powerful tool for querying and manipulating data collections. Among its many operators, Single, SingleOrDefault, First, and FirstOrDefault are commonly used to retrieve specific elements from sequences.

Read more
Creating Dynamic LINQ Queries in C# with Predicate Builder
By Tan Lee Published on Feb 22, 2025 160

In C#, one of the most powerful techniques for building dynamic LINQ queries is using the Predicate Builder.

Read more
Visual Studio: How to make ClickOnce setup trusted publishers
By Tan Lee Published on Jun 13, 2017 4.01K

How to Configure ClickOnce Trusted Publishers in Visual Studio

Read more
SQL Server: How to backup a database
By Tan Lee Published on Jun 08, 2017 3.93K

How to Backup a database in Microsoft SQL Server

Read more
Windows Forms: Insert Update Delete and View data from SQL Database using Dapper ORM in C#
By Tan Lee Published on Jun 08, 2017 11.74K

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

Read more
Windows Forms: Insert Update Delete and View data from SQL Database using Web Service in C#
By Tan Lee Published on Jun 08, 2017 6.63K

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

Read more
How to make a setup file in Visual Studio
By Tan Lee Published on May 30, 2017 4.52K

How to make a setup file in microsoft visual studio using install shield

Read more
How to Publish an application in Visual Studio
By Tan Lee Published on May 30, 2017 5.66K

How to publish a windows forms application in Visual Studio with auto update using c#, create a ClickOnce setup

Read more
ASP.NET MVC: Insert Update Delete and View data from SQL Database
By Tan Lee Published on May 29, 2017 9.1K

Full CRUD Operations: Create, Read, Update and Delete with ASP.NET Identity MVC 5 Razor using C#, Entity Framework Code First

Read more