Windows Forms

How to Insert Update Delete Select in SQL Server in C#
By Tan Lee Published on Jun 25, 2017 6.57K

To perform Insert, Update, Delete, and Select operations in SQL Server using Entity Framework Database First in C#, you can follow these steps.

Read more
How to create a Notification Popup in C#
By Tan Lee Published on Jun 21, 2017 15.2K

Creating a notification popup window in C# using the Tulpep.NotificationWindow library is a straightforward process.

Read more
How to Print Orders/Receipt using Report Viewer in C#
By Tan Lee Published on Jun 21, 2017 22.43K

Printing orders or receipts using the Report Viewer in C# typically involves creating a report using Microsoft Report Viewer, binding it to your data, and invoking the print functionality.

Read more
How to Read QR Code from Webcam in C#
By Tan Lee Published on Jul 16, 2024 36.14K

To read a QR code from a webcam or camera in a C# Windows Forms Application using AForge.NET and ZXing.Net, you can follow these steps.

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

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

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

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

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

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

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

Read more