Windows Forms

How to encrypt with MD5 in C#
By Tan Lee Published on Jun 13, 2024 11.1K

MD5 is not typically used for encrypting plaintext. It's a cryptographic hashing algorithm used for generating fixed-size hash values from input data.

Read more
How To Add Watermark Text To Images in C#
By Tan Lee Published on Jul 17, 2024 7.61K

Adding a watermark text to images in a C# Windows Forms Application involves a few steps, primarily dealing with image manipulation and drawing text on the image.

Read more
How to implement Jint in C#
By Tan Lee Published on Sep 14, 2024 633

Jint is a JavaScript interpreter for .NET, allowing you to execute JavaScript code from within your C# applications. Implementing Jint in a Windows Forms application can be a powerful way to add scripting capabilities.

Read more
How to Encrypt and Decrypt a String in C#
By Tan Lee Published on Jun 02, 2017 14.61K

In C#, you can use TripleDES (Triple Data Encryption Standard) for encrypting and decrypting strings in a Windows Forms application.

Read more
How to Convert string to binary in C#
By Tan Lee Published on Jun 12, 2024 6.16K

To convert a string to binary representation in a C# Windows Forms Application, you can follow these steps.

Read more
How to execute PowerShell script in C#
By Tan Lee Published on Jun 15, 2024 43.18K

Running PowerShell scripts or cmdlets from a C# Windows Forms Application involves using the System.Management.Automation namespace, which provides classes for interacting with PowerShell.

Read more
How to Generate QR Code with Logo in C#
By Tan Lee Published on May 21, 2024 23.27K

You can generate a QR code with a logo using the ZXing.Net library in a C# Windows Forms Application by following these steps.

Read more
How to Create overlay modal popup in C#
By Tan Lee Published on Jul 16, 2024 9.03K

Creating an overlay modal dialog in a C# Windows Forms Application involves several steps.

Read more
How to Custom color of Progress Bar in C#
By Tan Lee Published on Jul 17, 2024 10.95K

To create a custom background color for a progress bar in C#, you can create a CustomProgressBar class inherit from the ProgressBar control, then override the OnPaint method.

Read more
How to Zip file folder in C#
By Tan Lee Published on Jul 17, 2024 10.16K

To compress or zip files, folders using DotNetZip and display a progress bar in a C# Windows Forms application, follow these steps.

Read more