Latest Posts

How to Create a Setup file using Advanced Installer
By Tan Lee Published on May 16, 2024 5.09K

Creating a setup file using Advanced Installer is a straightforward process, but it involves several steps.

Read more
How to Decompile .NET DLL to Source Code using Reflector
By Tan Lee Published on Jun 13, 2024 11.55K

To decompile a .NET DLL to C# source code using Reflector, you can follow these steps.

Read more
How to populate a ComboBox with data in C#
By Tan Lee Published on May 13, 2024 12.46K

To populate a ComboBox with data in a C# Windows Forms Application, you typically follow these steps.

Read more
How to Search files in directory in C#
By Tan Lee Published on May 18, 2024 12.16K

You can search for files in a directory and its subdirectories in a C# Windows Forms Application using the Directory class and the SearchOption.AllDirectories enumeration value.

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

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 11K

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

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 583

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

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

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 13.89K

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

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

Read more