Windows Forms

How to Run a C# WinForms App with Administrator Rights
2/15/2025 2:26:28 AM  201

In this guide, we will discuss how to force a C# WinForms application to always run with elevated privileges (administrator rights), which is particularly useful for tasks requiring system-level access, like managing Windows services.

Read more
How to Open and Read Excel Files in VB.NET
2/14/2025 2:45:20 AM  27.77K

To open and read Excel files using ExcelDataReader, ExcelDataReader.DataSet in VB.NET Windows Forms Application, you need to follow these steps

Read more
How to create a Barcode Scanner using Webcam in C#
2/14/2025 2:39:19 AM  19.04K

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
Face Detection for .NET using Emgu CV in C#
2/14/2025 2:24:49 AM  23.46K

To detect faces using Emgu CV (OpenCV wrapper for C#) in a Windows Forms Application, you can follow these steps.

Read more
How to change color of Progress Bar in C#
2/14/2025 2:17:31 AM  21.33K

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 more
How to Open word file in RichTextBox using C#
2/14/2025 2:16:15 AM  23.11K

To open a Word document into a RichTextBox control in a C# Windows Forms Application, you can use the Microsoft Office Interop libraries.

Read more
How to create a Chart/Graph using RDLC Report in C#
2/14/2025 2:14:09 AM  12.68K

Creating a chart or graph in an RDLC (Report Definition Language Client-side) report using Microsoft Report Viewer involves several steps.

Read more
How to Download and Install Metro Framework
2/14/2025 2:12:32 AM  47.99K

How to download and install Metro Framework from Nuget or offline without using Visual Studio.

Read more
How to Decompile .NET DLL to Source Code using Reflector
2/13/2025 2:14:03 AM  11.34K

To decompile a .NET DLL to C# source code using Reflector, you can follow these steps.

Read more
How to create Chart/Graph in C#
2/13/2025 2:09:30 AM  18.64K

Creating charts/graphs like bar, line, and pie charts with data from a SQL Server database using C# typically involves the following steps.

Read more