Windows Forms
How to create multi language using Resource Manager and Culture Info in C#
By Tan Lee Published on Jul 31, 2017 14.52K
To create a multi-language application in C# Windows Forms using Resource Manager and CultureInfo, follow these steps.
Read moreHow to Encode and Decode QR Code in C#
By Tan Lee Published on May 23, 2017 13.9K
To encode and decode QR codes using the MessagingToolkit.QRCode library in a Windows Forms application, you need to follow these steps
Read moreHow to Load selected columns data in DataGridView in C#
By Tan Lee Published on Jul 29, 2017 6K
To load selected columns of data into a DataGridView in C#, you can follow these steps.
Read moreHow to use Timer control in C#
By Tan Lee Published on Jul 11, 2017 4.91K
To use a timer control in a C# Windows Forms application, you can follow these steps.
Read moreHow to read .rtf file in C#
By Tan Lee Published on Jul 11, 2017 6.08K
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 moreHow to read text file (*.txt) in C#
By Tan Lee Published on Jul 11, 2017 13.33K
To read a .txt file and display its content in a TextBox in a C# application, you can follow these steps.
Read moreHow to make an Alarm clock in C#
By Tan Lee Published on Jun 26, 2017 14.75K
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 moreHow to Save and Retrieve Image from SQL database in C#
By Tan Lee Published on Aug 13, 2017 20.93K
To save and retrieve images from an SQL database using Entity Framework in C#, you need to follow a few steps to handle binary data properly, such as saving images as byte arrays (byte[]) in the database and retrieving them correctly.
Read moreHow to use BindingSource and BindingNavigator in C#
By Tan Lee Published on Jul 23, 2017 8.3K
Using BindingSource and BindingNavigator in a Windows Forms application simplifies data binding and navigation in a user interface.
Read moreHow to insert Math Equation in RichTextBox in C#
By Tan Lee Published on Jun 26, 2017 4.37K
Inserting an equation or MathType-like content into a RichTextBox in a C# Windows Forms application can be approached in several ways.
Read more