Windows Forms

How To Use Metro Framework Metro Style Manager in C#
12/9/2024 2:10:55 PM  17.21K

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#
12/9/2024 2:02:40 PM  10.21K

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#
12/9/2024 1:46:16 PM  13.24K

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#
12/9/2024 1:37:39 PM  9.95K

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
12/9/2024 12:52:24 PM  7.96K

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

Read more
How to create a Barcode Scanner using Webcam in C#
12/7/2024 3:49:16 AM  18.72K

Creating a barcode scanner using a webcam in a C# Windows Forms application involves several steps, primarily involving the use of a barcode scanning library and accessing the webcam feed.

Read more
How to Search DataGridView by using TextBox in C#
12/7/2024 3:47:49 AM  26.17K

To filter or search a DataGridView using a TextBox in C#, you typically bind the DataGridView to a DataTable or similar data source and use a DataView to filter the rows.

Read more
How to dynamically add button and click event in C#
12/7/2024 3:38:09 AM  15.49K

In C#, you can dynamically add a button click event handler by creating a method that will handle the click event and then assigning this method to the button's Click event at runtime.

Read more
How to Read Excel file and Import data from Excel to SQL Server in C#
12/6/2024 8:52:47 AM  32.56K

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#
12/6/2024 8:48:24 AM  10.94K

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