Windows Forms

How to Read Excel file in C#
7/19/2024 2:19:50 AM  10.14K

Reading an Excel file in a C# Windows Forms Application using Microsoft.Office.Interop.Excel.dll involves a few steps.

Read more
.NET Core Windows Forms Designer
7/19/2024 2:19:00 AM  12.24K

To enable the designer for Windows Forms Application using .NET Core 3.0 in Visual Studio 2019, you should download and install the Windows Forms .NET Core Designer VSIX package.

Read more
Getting Started with LiteDB database in C#
7/19/2024 2:18:38 AM  13.35K

Using LiteDB, a NoSQL database for .NET, in C# is straightforward and involves a few basic steps to get started.

Read more
How to Drag and drop image from one PictureBox to another PictureBox in C#
7/19/2024 2:16:47 AM  10.46K

To implement drag and drop functionality between two PictureBox controls in a C# Windows Forms Application, you can follow these steps.

Read more
How to Autocomplete RichTextBox in C#
7/19/2024 2:15:50 AM  9.49K

To implement AutoComplete with a RichTextBox using the Autocomplete Menu library in a C# Windows Forms Application, you can follow these steps.

Read more
How to Convert an image into grayscale in C#
7/19/2024 2:14:35 AM  8.79K

You can convert an image to grayscale in a C# Windows Forms Application using the Bitmap class.

Read more
How to List all file names in Zip file in C#
7/19/2024 2:14:09 AM  5.8K

Listing all file names in zip file, then display it to the ListBox control in C# Windows Forms Application using System.IO.Packaging

Read more
How to Send an email using gmail API in C#
7/19/2024 2:13:52 AM  15.25K

To send an email using the Gmail API in a C# Windows Forms Application, you'll need to follow these steps.

Read more
How to Convert an image to base64 in C#
7/19/2024 2:12:20 AM  16.6K

To convert an image to a Base64 string and vice versa in a C# Windows Forms Application, you can follow these steps.

Read more
How to Send text to Notepad in C#
7/19/2024 2:11:22 AM  7.99K

To pass data to Notepad using a C# Windows Forms Application, you can follow these steps.

Read more