Windows Forms
How to Download files with FTP in C#
11/15/2024 9:31:00 AM 10.56K
You can download files from an FTP server in a C# Windows Forms Application using the WebRequest class.
Read moreHow to use Metro Progress Bar in C#
11/15/2024 9:23:03 AM 12.17K
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 moreHow to Zip file folder in C#
11/15/2024 9:07:43 AM 9.49K
To compress or zip files, folders using DotNetZip and display a progress bar in a C# Windows Forms application, follow these steps.
Read moreHow to Upload a file to Web API in C#
11/15/2024 8:52:54 AM 19.1K
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 moreHow To Add Watermark Text To Images in C#
11/15/2024 7:44:28 AM 6.99K
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 moreHow to Create Report Viewer using Stored Procedure in C#
11/14/2024 12:30:46 PM 11.49K
Creating an RDLC report with the Report Viewer using Entity Framework and a stored procedure in C# involves several steps.
Read moreHow to use Progress Bar in C#
11/13/2024 9:38:16 AM 6.95K
To implement a progress bar using the Task Parallel Library in C#, you'll typically use a Progress<T> object to report progress from a background task to the UI thread.
Read moreHow to create a Web Browser in C#
11/12/2024 9:56:23 AM 6.4K
Creating a simple web browser in C# using Windows Forms is relatively easy, thanks to the WebBrowser control provided by .NET.
Read moreHow to read an image file in C#
11/12/2024 9:30:53 AM 3.48K
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 moreHow to use BackgroundWorker in C#
11/12/2024 9:20:37 AM 7.11K
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