Windows Forms
How to Minimize application to system tray in C#
1/21/2025 3:35:12 AM 15.78K
Minimizing an application to the system tray in a C# Windows Forms application involves a few steps.
Read moreHow to Download Youtube Video in C#
1/21/2025 3:26:53 AM 26.41K
To download a video from YouTube in a C# Windows Forms Application using the YoutubeExtractor library, you can follow these steps.
Read moreHow to Encrypt and Decrypt ConnectionString in App.config file in C#
1/21/2025 3:23:27 AM 37.05K
Encrypting connection strings in app.config or web.config in C# is a common practice to secure sensitive information such as database credentials.
Read moreHow to Encrypt and Decrypt a String in C#
1/21/2025 3:11:55 AM 14.04K
In C#, you can use TripleDES (Triple Data Encryption Standard) for encrypting and decrypting strings in a Windows Forms application.
Read moreHow to Generate QR Code with Logo in C#
1/20/2025 9:49:10 AM 22.45K
You can generate a QR code with a logo using the ZXing.Net library in a C# Windows Forms Application by following these steps.
Read moreHow to Export DataTable to CSV using CsvHelper in C#
1/20/2025 9:31:34 AM 21K
Using CsvHelper to export a DataTable to a CSV file in C# is quite straightforward.
Read moreHow to change color of Progress Bar in C#
1/20/2025 9:13:48 AM 20.68K
In C#, you can change the color of a progress bar by customizing its appearance using the ProgressBar control provided by WinForms or WPF.
Read moreHow to Monitor data change using SqlDependency in C#
1/20/2025 8:36:02 AM 16.33K
To detect changes in a SQL Server database using SqlDependency in a C# Windows Forms Application, you need to follow these steps.
Read moreHow to Make a File Browser in C#
1/20/2025 8:33:59 AM 32.33K
To create a file browser using a ListView control in a C# Windows Forms Application and extract the icon associated with each file, you can follow these steps.
Read moreHow to Generate Excel Report in C#
1/17/2025 10:02:42 AM 10.8K
Generating an Excel report using ClosedXml.Report in a C# Windows Forms Application involves setting up ClosedXML and ClosedXml.Report packages, designing a template Excel file with placeholders, and populating it with data programmatically.
Read more