Latest Posts

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

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

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

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.79K

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 849

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 Connect to Oracle database from SQL Server Management Studio
By Tan Lee Published on May 15, 2024 20.63K

To connect to an Oracle database from Microsoft SQL Server Management Studio (SSMS), you need to use a linked server.

Read more
How to use Dotfuscator in Visual Studio
By Tan Lee Published on Apr 09, 2024 14.9K

Dotfuscator is a tool for .NET applications that provides obfuscation to protect your code from reverse engineering and tampering, it helps protect your .net application.

Read more
Could not load file or assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies
By Tan Lee Published on May 14, 2024 14.44K

This error occurs because the required assembly, netstandard, Version=2.0.0.0, is not found or there’s a mismatch in dependencies in your project.

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

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.39K

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.61K

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.64K

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.28K

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

Read more