Windows Forms

How to Get value from another Form in C#
By Tan Lee Published on Jul 25, 2017 10.01K

To get a value from another form in a C# Windows Forms application, you typically use properties or methods in the target form to expose the data you need.

Read more
How to Create Login Form with Access Database in C#
By Tan Lee Published on Jun 01, 2017 17.07K

Creating a login form in C# that interacts with an MS Access database using a DataSet involves several steps.

Read more
How to make a Notepad in C#
By Tan Lee Published on Jun 02, 2017 8K

Creating a simple Notepad application in a C# Windows Forms Application is a great way to get familiar with Windows Forms and file handling.

Read more
How to Receive SMS from WhatsApp in C#
By Tan Lee Published on Jul 12, 2017 9.65K

To receive WhatsApp messages using C#, you typically need to interact with the WhatsApp Business API or a third-party library, as the official WhatsApp API does not allow direct message reading without proper setup.

Read more
How to read an excel (.xls/.xlsx) file in C#
By Tan Lee Published on May 24, 2017 6.96K

To read an Excel file (.xls or .xlsx) in a C# Windows Forms application using the ExcelDataReader library.

Read more
How to create a Metro Live Tiles in C#
By Tan Lee Published on May 28, 2017 11.89K

Creating Metro Live Tiles using the Metro Framework in C# involves a few key steps.

Read more
How to Create Multiple pages on the Form using Panel control in C#
By Tan Lee Published on Jun 05, 2017 20.15K

Creating multiple pages on a form using the Panel control in a Windows Forms application in C# can be a useful approach for creating tabbed interfaces or wizard-like interfaces.

Read more
How to insert Math Equation to RichTextBox in C#
By Tan Lee Published on Jun 05, 2017 9.9K

In C#, the RichTextBox control does not natively support inserting or rendering complex mathematical equations or MathType objects directly.

Read more
How to Restore SQL Database Backup in C#
By Tan Lee Published on Jun 21, 2017 10.96K

Restoring a SQL Server database from a backup using C# involves utilizing the SQL Server Management Objects (SMO) library.

Read more
How to Create Login Form with MySQL in C#
By Tan Lee Published on Jun 01, 2017 7.17K

Creating a login form in a C# application that connects to a MySQL database involves several steps.

Read more