Windows Forms

How to Display Images in DataGridView in C#
By Tan Lee Published on Jun 19, 2017 6.67K

To display images in a DataGridView control in C# Windows Forms, you can use an image column.

Read more
How to Download files with FTP in C#
By Tan Lee Published on May 29, 2024 11.33K

You can download files from an FTP server in a C# Windows Forms Application using the WebRequest class.

Read more
How to use Metro Progress Bar in C#
By Tan Lee Published on Jun 08, 2017 12.79K

To use the Metro Progress Bar in a C# Windows Forms application, you typically need a library that provides a modern "Metro-style" UI component.

Read more
How to Create Report Viewer using Stored Procedure in C#
By Tan Lee Published on Jun 08, 2017 12.14K

Creating an RDLC report with the Report Viewer using Entity Framework and a stored procedure in C# involves several steps.

Read more
How to create a Web Browser in C#
By Tan Lee Published on Jul 11, 2017 6.77K

Creating a simple web browser in C# using Windows Forms is relatively easy, thanks to the WebBrowser control provided by .NET.

Read more
How to read an image file in C#
By Tan Lee Published on Jul 11, 2017 3.98K

To read an image file in a C# Windows Forms application, you typically use the System.Drawing namespace, which provides classes for working with images.

Read more
How to use BackgroundWorker in C#
By Tan Lee Published on Jun 01, 2017 7.81K

The BackgroundWorker class in C# is used for running operations on a separate, dedicated thread in the background, allowing the UI to remain responsive.

Read more
Insert Update Delete and View data from SQL Database using ORM Lite in C#
By Tan Lee Published on Jun 08, 2017 6.68K

To perform Insert, Update, Delete, and View operations on student profile data using ORM Lite and Metro Framework in a C# Windows Forms application, you need to follow these steps.

Read more
How to create excel file in c# using dataset
By Tan Lee Published on Nov 05, 2024 496

To create an Excel file in C# using a DataSet, you can use libraries like EPPlus or ClosedXML for handling Excel file creation.

Read more
How to use a Custom control in C#
By Tan Lee Published on Jul 25, 2017 5.66K

Creating a custom picture box with scrollbars in C# involves deriving a new control from Control and implementing the necessary functionality to handle scrolling.

Read more