Windows Forms
How to create multi language using Resource Manager and Culture Info in C#
11/22/2024 1:51:27 PM 13.61K
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#
11/22/2024 8:34:22 AM 13.14K
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#
11/22/2024 8:19:04 AM 5.34K
To load selected columns of data into a DataGridView in C#, you can follow these steps.
Read moreHow to use Timer control in C#
11/22/2024 8:16:01 AM 4.44K
To use a timer control in a C# Windows Forms application, you can follow these steps.
Read moreHow to Search DataGridView by using TextBox in C#
11/22/2024 8:04:57 AM 25.52K
To filter or search a DataGridView using a TextBox in C#, you typically bind the DataGridView to a DataTable or similar data source and use a DataView to filter the rows.
Read moreHow to read .rtf file in C#
11/22/2024 7:53:42 AM 5.52K
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#
11/22/2024 7:45:25 AM 12.84K
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#
11/21/2024 3:08:05 PM 13.79K
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#
11/21/2024 2:24:58 PM 19.42K
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#
11/21/2024 2:04:38 PM 7.56K
Using BindingSource and BindingNavigator in a Windows Forms application simplifies data binding and navigation in a user interface.
Read more