Windows Forms

How to Create a Splash Screen in C#
7/19/2024 2:29:36 AM  21.54K

Creating a splash screen in a C# Windows Forms application involves creating a separate form that will be displayed for a short duration when the application starts.

Read more
How to Monitor data change using SqlDependency in C#
7/19/2024 2:28:30 AM  15.45K

To detect changes in a SQL Server database using SqlDependency in a C# Windows Forms Application, you need to follow these steps.

Read more
How to Generate QR Code with Logo in C#
7/19/2024 2:26:19 AM  21.73K

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 more
How to Drag and Drop text files into a RichTextBox in C#
7/19/2024 2:25:55 AM  8.89K

In C#, you can easily enable drag-and-drop functionality for a RichTextBox control by handling the appropriate events and setting the AllowDrop property to true.

Read more
How to create a Barcode Scanner using Webcam in C#
7/19/2024 2:25:03 AM  17.78K

Creating a barcode scanner using a webcam in a C# Windows Forms application involves several steps, primarily involving the use of a barcode scanning library and accessing the webcam feed.

Read more
How to Create a System tray Notification in C#
7/19/2024 2:24:10 AM  8.28K

To create a system tray application in C# using the NotifyIcon control, how to minimize your application to the system tray, display a balloon tip with custom title and description, and ensure proper handling of application exit.

Read more
How to Drag and Drop controls in C#
7/19/2024 2:23:46 AM  6.34K

To enable drag and drop functionality for controls in a C# application using the Control.Draggable library, you need to follow these steps.

Read more
How to Create Effect Winform using AnimateWindow in C#
7/19/2024 2:22:36 AM  7.08K

To create an effect in a WinForm using AnimateWindow in C#, you can follow these steps.

Read more
How to Read Excel file in C# using OleDb
7/19/2024 2:21:01 AM  9.45K

To read an Excel file in C# without using Interop and to get Excel sheet names using OleDb provider, you can follow these steps.

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

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

Read more