Latest Posts

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

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

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

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

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

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

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

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

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

Read more
How to Encrypt and Decrypt ConnectionString in App.config file in C#
By Tan Lee Published on Jul 17, 2024 38.82K

Encrypting connection strings in app.config or web.config in C# is a common practice to secure sensitive information such as database credentials.

Read more
How to Create a Geo Chart using LiveCharts in C#
By Tan Lee Published on Jun 25, 2024 10.98K

Creating a Geo Chart (GeoHeatMap) using LiveCharts in a C# Windows Forms Application involves a few steps to set up the environment and then configure the chart.

Read more
How to create a Metro Message Box in C#
By Tan Lee Published on Jul 16, 2024 25.74K

Creating a Metro MessageBox using Metro Framework Modern UI Design in C# Windows Forms application.

Read more
How to use Modern UI Metro Framework in C#
By Tan Lee Published on Jul 16, 2024 21.13K

To use the WinForms Modern UI Metro Framework in a C# Windows Forms application, follow these steps.

Read more