Windows Forms

How 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
How to use a Webcam in C#
1/17/2025 10:00:33 AM  32.24K

To integrate a webcam into a C# Windows Forms Application using AForge.NET framework, you can follow these steps.

Read more
How to use Modern UI Metro Framework in C#
1/17/2025 9:59:02 AM  18.97K

To use the WinForms Modern UI Metro Framework in a C# Windows Forms application, follow these steps.

Read more
How to Send an email using gmail API in C#
1/17/2025 9:57:26 AM  15.58K

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 Create a Splash Screen in C#
1/17/2025 9:50:00 AM  22.61K

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 Create a Wait Form Dialog in C#
1/17/2025 9:33:28 AM  30.82K

Creating a wait dialog in a C# Windows Forms application can enhance user experience by providing feedback during long-running operations.

Read more
How to add a Button each row in a DataGridView in C#
1/17/2025 9:21:17 AM  40.01K

To add a button to each row in a DataGridView in a C# Windows Forms application, you can follow these steps.

Read more
How to Get all Forms and Open Form with Form Name in C#
1/17/2025 9:11:38 AM  11.67K

In C#, you can dynamically open or call a form by its name at runtime using reflection or by managing a collection of form names and their associated instances.

Read more
How to Create a custom Progress Bar with Percentage in C#
1/17/2025 9:07:29 AM  14.74K

Creating a custom progress bar with a percentage in C# Windows Forms is straightforward.

Read more
How to Custom color of Progress Bar in C#
1/17/2025 9:06:00 AM  10.3K

To create a custom background color for a progress bar in C#, you can create a CustomProgressBar class inherit from the ProgressBar control, then override the OnPaint method.

Read more