Latest Posts

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

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

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 769

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

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

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 Print Invoice in C#
By Tan Lee Published on Jun 18, 2017 12.95K

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

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

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

Read more
How to Create a Modern Windows 8 UI with the Metro Framework in C#
By Tan Lee Published on Jul 15, 2017 9.05K

o create a modern Windows 8 UI with the Metro Framework in C#, follow these steps.

Read more
How to create a Web Browser with Tabs in C#
By Tan Lee Published on Jul 04, 2017 12.71K

Creating a simple web browser with tabs in C# can be done using the WebBrowser control.

Read more
How to fill ComboBox and DataGridView automatically in C#
By Tan Lee Published on Jul 26, 2017 7.51K

To automatically populate a ComboBox and a DataGridView in C#, you typically need to bind these controls to data sources.

Read more
How to Read text file and Sort list in C#
By Tan Lee Published on Jul 04, 2017 8.07K

To read a text file and sort a list in C#, you can follow these steps.

Read more