Latest Posts
How to save files using SaveFileDialog in C#
By Tan Lee Published on Jul 12, 2017 7.99K
To save the contents of a RichTextBox using a SaveFileDialog in C#, you can follow these steps.
Read moreHow to Auto Increment Version Number in Visual Studio
By Tan Lee Published on Jul 13, 2024 36.01K
In Visual Studio, you can automatically increment the version number of your assembly by following these steps.
Read moreHow to Convert binary to text in C#
By Tan Lee Published on May 17, 2024 7.97K
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 moreHow to Create a Metro GridView in C#
By Tan Lee Published on Jul 16, 2024 27.94K
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 moreHow to Export DataTable to CSV using CsvHelper in C#
By Tan Lee Published on Jul 16, 2024 21.92K
Using CsvHelper to export a DataTable to a CSV file in C# is quite straightforward.
Read moreHow to create a Barcode Scanner using Webcam in C#
By Tan Lee Published on Jul 05, 2024 19.45K
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 moreHow to use a Webcam in C#
By Tan Lee Published on Jun 12, 2024 33.62K
To integrate a webcam into a C# Windows Forms Application using AForge.NET framework, you can follow these steps.
Read moreHow to download ChromeDriver for Selenium
By Tan Lee Published on Aug 29, 2024 5.5K
To download ChromeDriver for use with Selenium, you can follow these steps.
Read moreHow to Update Progress Bar from Async Task in C#
By Tan Lee Published on Jun 20, 2024 35.99K
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 moreHow to create multiple line charts in C#
By Tan Lee Published on Jul 16, 2024 25.94K
Creating multiple line charts using the Chart control in a C# Windows Forms Application involves a few straightforward steps.
Read moreHow to use Material Design for .Net WinForms in C#
By Tan Lee Published on Jun 17, 2024 25.44K
There are several third-party frameworks and libraries that bring Material Design components to Windows Forms.
Read moreHow to Implement Serial Communication in C#
By Tan Lee Published on Jun 14, 2024 23.69K
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