Search

How To Read a Barcode From an Image in C#
By Tan Lee Published on Jun 15, 2024 11.51K

To read barcodes from images in a C# Windows Forms application using the ZXing.Net library, you can follow these steps.

Read more
How to Link Chart /Graph with Database in C#
By Tan Lee Published on Jun 06, 2017 16.65K

Linking a chart or graph with a database in C# involves querying the database to fetch data and then using the data to populate the chart or graph.

Read more
How To Use Metro Framework Metro Style Manager in C#
By Tan Lee Published on Jun 20, 2017 17.93K

The MetroFramework is a popular open-source library that provides a modern Metro UI for Windows Forms applications in C#.

Read more
How to Insert Update Delete Search data from local database in C#
By Tan Lee Published on Jul 24, 2017 10.56K

Creating a Telephone Diary (Phone Book) application in C# using Material Skin with a local database can be broken down into the following steps.

Read more
How to Check SQL Server Connection in C#
By Tan Lee Published on Jul 03, 2017 14.01K

You can check a SQL Server connection in a C# Windows Forms application using the SqlConnection class from the System.Data.SqlClient namespace.

Read more
How to Generate Serial Key in C#
By Tan Lee Published on Jul 03, 2017 10.51K

Serial key generation and validation are crucial components of software licensing.

Read more
How to Insert Update Delete and View data in C# using Redis
By Tan Lee Published on May 26, 2017 8.24K

To perform Insert, Update, Delete, and View operations in C# using Redis, follow these steps.

Read more
How to Change Google Chrome User Agent in Selenium with C#
By Tan Lee Published on Dec 09, 2024 299

To change the user agent in Google Chrome when using Selenium in C#, you'll need to use the ChromeOptions class to set the custom user agent string, and then pass those options when launching the Chrome browser.

Read more
C# Thread
By Tan Lee Published on Dec 09, 2024 182

In C#, a Thread is a unit of execution within a process. Each Thread represents a separate execution path, and multiple threads can run concurrently within the same application.

Read more
How to Create a PDF from a RDLC Report in C#
By Tan Lee Published on Feb 16, 2024 1.59K

To save an RDLC (Report Definition Language Client-side) report to a PDF file in C#, you can follow step.

Read more