Windows Forms

How to Create a Fluent Design Form in C#
7/13/2024 4:17:59 AM  16.67K

Creating a Fluent Design Form in a C# Windows Forms Application using DevExpress involves leveraging DevExpress's Fluent Design Form components and adjusting the appearance settings to achieve the desired Fluent Design style.

Read more
How do I retrieve disk information in C#
7/13/2024 4:16:24 AM  3.87K

To retrieve disk information in a C# Windows Forms Application, you can utilize the DriveInfo class from the System.IO namespace.

Read more
How to Create a Lucky Draw games in C#
7/13/2024 2:43:44 AM  303

Implementing a 'Lucky Draw' functionality in a C# Windows Forms Application involves several steps to handle UI, logic, and random selection.

Read more
How to Create captcha in C#
7/13/2024 2:43:20 AM  7.17K

Creating a CAPTCHA in a C# Windows Forms Application involves generating an image with random characters and some level of distortion to make it difficult for automated programs to recognize.

Read more
How to create and write data to an Excel file in VB.NET
7/13/2024 2:36:34 AM  13.04K

To create and write data to an Excel file in a VB.NET Windows Forms Application using EPPlus, you'll need to follow these steps.

Read more
How to Generate Excel Report in C#
7/13/2024 2:31:17 AM  10.49K

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
How to Record audio from microphone in C#
7/13/2024 2:26:46 AM  376

To record audio from a microphone in C#, you can use the NAudio library, which is a popular library for working with audio in .NET.

Read more
How to read CSV file in C#
7/13/2024 1:12:58 AM  9.26K

To read a CSV file in a C# Windows Forms Application, you can follow these steps.

Read more
How to Generate QR Code in VB.NET
7/13/2024 1:11:16 AM  215

To generate a QR Code in VB.NET using the ThoughtWorks.QRCode library, you'll need to follow these steps.

Read more
How to display PDF in form C#
7/12/2024 3:18:41 PM  213

To display a PDF within a Windows Forms application using C#, you can use the WebBrowser control, which is capable of rendering PDF files if Adobe Acrobat Reader or another PDF viewer plugin is installed on the user's machine.

Read more