Windows Forms
How to use Timer control in C#
By Tan Lee Published on Jul 11, 2017 4.83K
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 5.99K
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.24K
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.65K
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.72K
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.18K
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.27K
Inserting an equation or MathType-like content into a RichTextBox in a C# Windows Forms application can be approached in several ways.
Read moreHow to Transfer Information between Forms in C#
By Tan Lee Published on Jul 18, 2017 5.79K
Transferring data between forms in a C# WinForms application can be achieved using several methods.
Read moreHow to Build a Metro-Style Web Browser with Tabs in C#
By Tan Lee Published on May 26, 2017 7.63K
Creating a Metro-style web browser with tabs using the Modern UI in C# is a fun project that incorporates the use of Windows Forms and the WebBrowser control.
Read moreHow to Encrypt and Decrypt a String in C#
By Tan Lee Published on Jun 02, 2017 7.83K
The Eramake.eCryptography library provides a simple way to encrypt and decrypt strings in C#.
Read more