Windows Forms

How to Embed Windows Media Player on a Form in C#
By Tan Lee Published on Jul 16, 2024 12.08K

To embed Windows Media Player in C# Windows Forms application allow you to play various media formats such as WMV, MP3, MP4, WAV, and MKV...etc, you can follow these steps.

Read more
How to Run a C# WinForms App with Administrator Rights
By Tan Lee Published on Feb 15, 2025 625

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 change color of Progress Bar in C#
By Tan Lee Published on May 31, 2024 22.15K

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#
By Tan Lee Published on Jun 24, 2024 23.51K

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#
By Tan Lee Published on Jun 06, 2017 12.92K

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
By Tan Lee Published on Jul 16, 2024 48.58K

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
By Tan Lee Published on Jun 13, 2024 11.64K

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

Read more
How to populate a ComboBox with data in C#
By Tan Lee Published on May 13, 2024 12.61K

To populate a ComboBox with data in a C# Windows Forms Application, you typically follow these steps.

Read more
How to Search files in directory in C#
By Tan Lee Published on May 18, 2024 12.26K

You can search for files in a directory and its subdirectories in a C# Windows Forms Application using the Directory class and the SearchOption.AllDirectories enumeration value.

Read more
How to Load multiple User control dynamically in C#
By Tan Lee Published on Jul 13, 2024 27.7K

Dynamically loading user controls in a C# Windows Forms Application allows you to create flexible and customizable UIs.

Read more