Windows Forms

How to Open and Read Excel Files in C#
11/23/2024 3:54:35 AM  15.46K

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

Read more
How to make a Calculator using Dynamic Formula in C#
11/22/2024 2:06:38 PM  7.58K

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#
11/22/2024 1:51:27 PM  13.97K

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#
11/22/2024 8:34:22 AM  13.42K

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#
11/22/2024 8:19:04 AM  5.62K

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#
11/22/2024 8:16:01 AM  4.59K

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#
11/22/2024 7:53:42 AM  5.74K

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#
11/22/2024 7:45:25 AM  13.01K

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#
11/21/2024 3:08:05 PM  14.24K

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
How to Save and Retrieve Image from SQL database in C#
11/21/2024 2:24:58 PM  20.01K

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 more