Latest Posts

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

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.77K

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.48K

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 13.86K

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.39K

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.17K

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

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.06K

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 Create Login Window with User Authentication in C#
By Tan Lee Published on Jan 20, 2021 34.12K

Creating a login window with user authentication in a C# Windows Forms application involves several steps.

Read more
How to make a File Explorer in C#
By Tan Lee Published on Jul 15, 2017 11.45K

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 fix 'ClickOnce does not support the request execution level 'requireAdministrator.''
By Tan Lee Published on Dec 06, 2024 556

The error message "ClickOnce does not support the request execution level 'requireAdministrator.'" typically occurs when a ClickOnce application is configured to request elevated permissions using a requireAdministrator setting, but ClickOnce does not allow this setting for deployment.

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.38K

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.68K

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