Latest Posts

How to save files using SaveFileDialog in C#
By Tan Lee Published on Jul 12, 2017 8.12K

To save the contents of a RichTextBox using a SaveFileDialog in C#, you can follow these steps.

Read more
How to Auto Increment Version Number in Visual Studio
By Tan Lee Published on Jul 13, 2024 36.42K

In Visual Studio, you can automatically increment the version number of your assembly by following these steps.

Read more
How to Convert binary to text in C#
By Tan Lee Published on May 17, 2024 8.05K

Convert binary to text in C# Windows Forms Application by entering binary in TextBox, then pressing the convert button and displaying the result in TextBox control.

Read more
How to Create a Metro GridView in C#
By Tan Lee Published on Jul 16, 2024 28.05K

To use Metro GridView with Metro Framework in a C# Windows Forms application, and then retrieve data from a SQL database using Entity Framework, follow these steps.

Read more
How to Export DataTable to CSV using CsvHelper in C#
By Tan Lee Published on Jul 16, 2024 22.07K

Using CsvHelper to export a DataTable to a CSV file in C# is quite straightforward.

Read more
How to create a Barcode Scanner using Webcam in C#
By Tan Lee Published on Jul 05, 2024 19.57K

Creating a barcode scanner using a webcam in a C# Windows Forms application involves several steps, primarily involving the use of a barcode scanning library and accessing the webcam feed.

Read more
How to use a Webcam in C#
By Tan Lee Published on Jun 12, 2024 33.83K

To integrate a webcam into a C# Windows Forms Application using AForge.NET framework, you can follow these steps.

Read more
How to download ChromeDriver for Selenium
By Tan Lee Published on Aug 29, 2024 5.67K

To download ChromeDriver for use with Selenium, you can follow these steps.

Read more
How to Update Progress Bar from Async Task in C#
By Tan Lee Published on Jun 20, 2024 36.21K

Using IProgress<T> to update a ProgressBar from an asynchronous Task in a C# Windows Forms Application involves a few steps to properly handle the progress reporting and UI updates.

Read more
How to create multiple line charts in C#
By Tan Lee Published on Jul 16, 2024 26.05K

Creating multiple line charts using the Chart control in a C# Windows Forms Application involves a few straightforward steps.

Read more
How to use Material Design for .Net WinForms in C#
By Tan Lee Published on Jun 17, 2024 25.58K

There are several third-party frameworks and libraries that bring Material Design components to Windows Forms.

Read more
How to Implement Serial Communication in C#
By Tan Lee Published on Jun 14, 2024 23.91K

To implement serial communication in C#, you can use the System.IO.Ports.SerialPort class. This class allows you to interact with a serial port (e.g., COM1, COM2) for sending and receiving data.

Read more