Windows Forms

How to Insert Update Delete data in Database from DataGridView in C#
By Tan Lee Published on Jul 25, 2017 14.42K

To manage Insert, Update, and Delete operations in a SQL database using a DataGridView in a C# Windows Forms application built with the Metro Framework (Modern UI), follow these steps.

Read more
How to use Modern UI Metro Framework in C#
By Tan Lee Published on Jul 26, 2017 9.79K

Designing a modern UI for a WinForms application using the Metro Framework is a straightforward process.

Read more
How to use DevExpress Themes/Skins in C#
By Tan Lee Published on Jun 18, 2017 12.36K

To use the DevExpress Skin Manager in a C# Windows Forms application, you need to follow a few steps to apply and customize the UI skin.

Read more
How to Create a Metro Login form with SQL Server in C#
By Tan Lee Published on Jun 19, 2017 7.08K

To create a Metro-style login form in C# with SQL Server, follow these steps.

Read more
How to Create CPU and Memory Monitor using Metro Modern UI in C#
By Tan Lee Published on Jun 03, 2017 8.49K

Creating a CPU and memory monitor in C# with the Metro Framework involves integrating system performance counters and a visually appealing user interface.

Read more
How to Create a Metro Modern Flat UI Dashboard in C#
By Tan Lee Published on Jun 08, 2017 38.23K

Creating a Metro Modern Flat UI Dashboard in C# using the Metro Framework and Modern UI involves several steps.

Read more
How To Open and Read an Excel file into a ListView in C#
By Tan Lee Published on Jul 17, 2024 10.99K

To open and read an Excel spreadsheet into a ListView in a C# Windows Forms Application, you'll need to use the Microsoft.Office.Interop.Excel library, which allows you to interact with Excel files programmatically.

Read more
How to Create Thumbnail Image in C#
By Tan Lee Published on Mar 31, 2024 4.65K

To create a thumbnail from an image in C#, you can use the System.Drawing namespace, which provides classes to work with images.

Read more
How to Insert Update Delete View data in SQL Server using 3 Tiers in C#
By Tan Lee Published on Jun 25, 2017 6.87K

Implementing Insert, Update, Delete, and View (CRUD operations) in SQL Server using the 3-tier architecture in C# involves dividing your application into three layers:

Read more
How to Print Receipt using Report Viewer in C#
By Tan Lee Published on May 26, 2017 22.8K

To create and print an RDLC report in a Windows Forms application with parameters in C#, follow these steps.

Read more