Latest Posts

How to Copy file to another directory in C#
By Tan Lee Published on Jul 16, 2024 11.54K

To copy a file to another directory in a C# Windows Forms application, you can use the System.IO.File class, which provides a convenient method called Copy.

Read more
How to Open and Read Excel Files in C#
By Tan Lee Published on May 14, 2024 16.45K

To open and read Excel files in a C# Windows Forms Application using ExcelDataReader and ExcelDataReader.DataSet, follow these steps.

Read more
How to Download Crystal Reports For Visual Studio
By Tan Lee Published on Jun 15, 2024 17.92K

This post shows you How to Download Crystal Reports For Visual Studio 2010, 2012, 2013, 2015, 2017 & 2019.

Read more
Download SQL Server Management Studio (SSMS) Versions
By Tan Lee Published on May 25, 2024 4.31K

Microsoft SQL Server Management Studio (SSMS) is a comprehensive tool for managing SQL Server infrastructure.

Read more
How to make a Calculator using Dynamic Formula in C#
By Tan Lee Published on May 27, 2017 7.99K

Creating a calculator using dynamic formulas in a C# Windows Forms application involves several steps.

Read more
How to create multi language using Resource Manager and Culture Info in C#
By Tan Lee Published on Jul 31, 2017 14.75K

To create a multi-language application in C# Windows Forms using Resource Manager and CultureInfo, follow these steps.

Read more
How to Encode and Decode QR Code in C#
By Tan Lee Published on May 23, 2017 14.11K

To encode and decode QR codes using the MessagingToolkit.QRCode library in a Windows Forms application, you need to follow these steps

Read more
How to Load selected columns data in DataGridView in C#
By Tan Lee Published on Jul 29, 2017 6.14K

To load selected columns of data into a DataGridView in C#, you can follow these steps.

Read more
How to use Timer control in C#
By Tan Lee Published on Jul 11, 2017 5.11K

To use a timer control in a C# Windows Forms application, you can follow these steps.

Read more
How to read .rtf file in C#
By Tan Lee Published on Jul 11, 2017 6.24K

To read a Rich Text Format (*.rtf) file and display its content in a RichTextBox control in C#, you can use the RichTextBox.LoadFile method.

Read more
How to read text file (*.txt) in C#
By Tan Lee Published on Jul 11, 2017 13.49K

To read a .txt file and display its content in a TextBox in a C# application, you can follow these steps.

Read more
How to make an Alarm clock in C#
By Tan Lee Published on Jun 26, 2017 14.99K

To create a simple alarm clock using the Timer control in C#, you can use Windows Forms and a Timer control that checks the system time against a specified alarm time.

Read more