Windows Forms

How to use Metro Progress Bar in C#
11/15/2024 9:23:03 AM  12.37K

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 Zip file folder in C#
11/15/2024 9:07:43 AM  9.62K

To compress or zip files, folders using DotNetZip and display a progress bar in a C# Windows Forms application, follow these steps.

Read more
How to Upload a file to Web API in C#
11/15/2024 8:52:54 AM  19.64K

To upload files and submit form data to an ASP.NET Core Web API using RestSharp in a C# Windows Forms application, you can follow these steps.

Read more
How To Add Watermark Text To Images in C#
11/15/2024 7:44:28 AM  7.13K

Adding a watermark text to images in a C# Windows Forms Application involves a few steps, primarily dealing with image manipulation and drawing text on the image.

Read more
How to Create Report Viewer using Stored Procedure in C#
11/14/2024 12:30:46 PM  11.65K

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#
11/12/2024 9:56:23 AM  6.51K

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#
11/12/2024 9:30:53 AM  3.59K

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#
11/12/2024 9:20:37 AM  7.3K

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#
11/11/2024 3:03:58 PM  6.41K

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
11/5/2024 9:35:15 AM  189

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