Latest Posts

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

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

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

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

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

Read more
How to Read data from Google Sheet in C# using HttpRequest without Speadsheet API
By Tan Lee Published on Sep 14, 2024 1.27K

To read data from a Google Sheet in C# using HttpRequest without using the Google Sheets API, you can leverage the fact that Google Sheets can be published to the web as a CSV file or HTML file.

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

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

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

Read more
How to Create Barcode Images from a string in C#
By Tan Lee Published on Jul 16, 2024 12.6K

Creating barcode images from a string in a C# Windows Forms application using the BarcodeLib library is quite straightforward.

Read more
How to Add close button to tab control in C#
By Tan Lee Published on Jun 21, 2024 18.39K

Adding a close button to each tab in a TabControl in a C# Windows Forms Application involves several steps.

Read more
How to download multiple files in C# using Parallel
By Tan Lee Published on May 25, 2024 9.15K

Downloading multiple files in parallel in a C# Windows Forms Application can be efficiently achieved using asynchronous programming techniques along with Task and HttpClient.

Read more
How to Create a Splash Screen in C#
By Tan Lee Published on Jun 15, 2024 23.36K

Creating a splash screen in a C# Windows Forms application involves creating a separate form that will be displayed for a short duration when the application starts.

Read more
How to Convert an image to base64 in C#
By Tan Lee Published on Jun 14, 2024 18.06K

To convert an image to a Base64 string and vice versa in a C# Windows Forms Application, you can follow these steps.

Read more