Search
How to Capture screenshot and record computer screen in C#
By Tan Lee Published on Jun 10, 2024 8.91K
You can capture screenshots and record your computer screen in a C# Windows Forms Application using libraries like System.Drawing for screenshots.
Read moreHow to Create a Stock Chart or Candlestick Chart in C#
By Tan Lee Published on May 25, 2024 18.49K
Creating a Stock Chart or Candlestick Chart using the Chart control in a C# Windows Forms Application involves several steps.
Read moreHow to Dynamically compile C# code at Runtime
By Tan Lee Published on May 21, 2024 6.45K
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 moreHow to download file from URL in C#
By Tan Lee Published on May 16, 2024 16.47K
To download a file from a URL using AltoHttp in a C# Windows Forms Application, you can follow these steps.
Read moreHow to Convert XPS to Bitmap in C#
By Tan Lee Published on Jun 01, 2024 4.87K
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 moreHow to Create QR Code in RDLC Report in C#
By Tan Lee Published on Jun 24, 2024 9.23K
Creating a QR code report using RDLC (Report Definition Language Client-side) in a C# Windows Forms application involves a few steps.
Read moreHow to run Script Windows Power Shell in C#
By Tan Lee Published on Jun 13, 2024 3.86K
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 moreHow to Hide and Show desktop icons in C#
By Tan Lee Published on Jul 17, 2024 9.81K
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 moreHow to send mail using Gmail SMTP Server in C#
By Tan Lee Published on Jul 17, 2024 15.33K
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 moreHow to Create Material MessageBox in C#
By Tan Lee Published on Jul 17, 2024 15.56K
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