Latest Posts

How to Add Items To ListBox from TextBox in C#
7/18/2024 7:39:49 AM  19.63K

To add items from a TextBox to a ListBox in a C# Windows Forms application, you can do the following step.

Read more
How to Capture screenshot and record computer screen in C#
7/18/2024 7:39:18 AM  7.92K

You can capture screenshots and record your computer screen in a C# Windows Forms Application using libraries like System.Drawing for screenshots.

Read more
How to Create a Stock Chart or Candlestick Chart in C#
7/18/2024 7:37:00 AM  16.57K

Creating a Stock Chart or Candlestick Chart using the Chart control in a C# Windows Forms Application involves several steps.

Read more
How to Change color of Progress Bar in C#
7/18/2024 7:35:28 AM  19.4K

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 Update Progress Bar from Async Task in C#
7/18/2024 7:35:06 AM  32.94K

Using IProgress<T> to update a ProgressBar from an asynchronous Task in a C# Windows Forms Application involves a few steps to properly handle the progress reporting and UI updates.

Read more
How to Dynamically compile C# code at Runtime
7/18/2024 7:33:56 AM  5.84K

To dynamically compile C# code at runtime in a Windows Forms application, you can use the CSharpCodeProvider class from the System.CodeDom.Compiler namespace.

Read more
How to use Material Design for .Net WinForms in C#
7/18/2024 7:32:23 AM  23.52K

There are several third-party frameworks and libraries that bring Material Design components to Windows Forms.

Read more
How to Create Thumbnail Image in C#
7/18/2024 7:29:44 AM  3.91K

To create a thumbnail from an image in C#, you can use the System.Drawing namespace, which provides classes to work with images.

Read more
How to download file from URL in C#
7/18/2024 7:29:24 AM  15.17K

To download a file from a URL using AltoHttp in a C# Windows Forms Application, you can follow these steps.

Read more
How to use GeckoFx Web Browser in C#
7/18/2024 7:25:53 AM  8.23K

GeckoFX is an embedded browser component leveraging Mozilla's Gecko rendering engine for use in C# Windows Forms applications involves a few steps.

Read more
How to Change system date in C#
7/18/2024 7:22:56 AM  8.02K

To change the system date programmatically in a C# Windows Forms application, you can use the System.DateTime structure along with System.Diagnostics.Process to execute commands that change the system date.

Read more
How to Convert XPS to Bitmap in C#
7/18/2024 3:47:15 AM  4.34K

To convert XPS (XML Paper Specification) to a Bitmap image in a C# Windows Forms application, you can use the System.Windows.Xps.Packaging namespace to load the XPS document, then render it to a System.Windows.Media.Imaging.RenderTargetBitmap.

Read more