Latest Posts

How to Create a Stock Chart or Candlestick Chart in C#
By Tan Lee Published on May 25, 2024 18.39K

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

Read more
How to Dynamically compile C# code at Runtime
By Tan Lee Published on May 21, 2024 6.42K

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 download file from URL in C#
By Tan Lee Published on May 16, 2024 16.41K

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

Read more
How to Convert XPS to Bitmap in C#
By Tan Lee Published on Jun 01, 2024 4.83K

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
How to Create QR Code in RDLC Report in C#
By Tan Lee Published on Jun 24, 2024 9.2K

Creating a QR code report using RDLC (Report Definition Language Client-side) in a C# Windows Forms application involves a few steps.

Read more
How to run Script Windows Power Shell in C#
By Tan Lee Published on Jun 13, 2024 3.84K

To run a PowerShell script from a C# Windows Forms Application, you can use the System.Management.Automation class to execute PowerShell.exe and pass the argument.

Read more
How to Hide and Show desktop icons in C#
By Tan Lee Published on Jul 17, 2024 9.75K

To hide and show desktop icons programmatically in a C# Windows Forms Application, you'll need to manipulate the Windows Shell through interop services.

Read more
How to send mail using Gmail SMTP Server in C#
By Tan Lee Published on Jul 17, 2024 15.29K

Sending email using Gmail's SMTP server in a C# Windows Forms Application involves using the SmtpClient class from the System.Net.Mail namespace.

Read more
How to Create Material MessageBox in C#
By Tan Lee Published on Jul 17, 2024 15.49K

Creating a Material Design-styled MessageBox in a C# Windows Forms Application using Material Skin involves using a custom dialog form with Material Skin controls.

Read more
How to Send free SMS Message in C#
By Tan Lee Published on Jul 17, 2024 8.89K

To send free SMS messages using ipipi.com in a C# Windows Forms Application, you'll follow a similar approach to the one outlined earlier.

Read more
How to Create a Metro Login Form with SQL Database in C#
By Tan Lee Published on Jul 17, 2024 26.17K

Creating a Metro login form in a C# Windows Forms Application using Metro Framework and Dapper ORM with an SQL database involves several steps.

Read more
How to Create a Radial Menu in C#
By Tan Lee Published on Jul 16, 2024 15.02K

Creating and displaying a Radial Menu in a C# DevExpress Windows Forms application involves a few straightforward steps.

Read more