Windows Forms

How to Live Currency Converter in C#
11/20/2024 12:59:23 PM  7.6K

Creating a live currency converter in a C# Windows Forms application that fetches exchange rates using an online service involves a few steps.

Read more
How to create a Metro Wait Form in C#
11/20/2024 12:58:21 PM  5.01K

To create a Metro-style WaitForm dialog in C# using the Metro Framework, you can follow these steps.

Read more
How to Save TextBox, Label and CheckBox in User Settings in C#
11/20/2024 12:43:19 PM  11.3K

To save and load values from TextBox, Label, and CheckBox controls in user settings in a Windows Forms application, you can use the built-in Properties.Settings feature in C#.

Read more
How to Encrypt and Decrypt a String in C#
11/20/2024 9:59:59 AM  13.66K

In C#, you can use TripleDES (Triple Data Encryption Standard) for encrypting and decrypting strings in a Windows Forms application.

Read more
How to retrieve data from SQL database in C# using Dapper ORM
11/20/2024 9:47:12 AM  14.1K

To retrieve data from an SQL database using Dapper ORM with a stored procedure in a C# Windows Forms application, follow these steps.

Read more
How to create a Task Manager in C#
11/19/2024 3:17:34 PM  8.98K

To create a simple Task Manager in C# Windows Forms that can kill a process, you can follow these steps.

Read more
How to generate Barcode & QR Code in C#
11/19/2024 3:04:11 PM  8.46K

To generate barcodes and QR codes in a C# Windows Forms application using Zen Barcode, you'll first need to install the Zen Barcode library.

Read more
How to Search and Highlight Text in a RichTextBox using C#
11/19/2024 2:32:02 PM  10.57K

In C#, you can search and highlight text in a RichTextBox by using the Find method to locate the text and then modifying the selection or applying formatting to highlight the found text.

Read more
How to save files using SaveFileDialog in C#
11/19/2024 2:19:45 PM  7.15K

To save the contents of a RichTextBox using a SaveFileDialog in C#, you can follow these steps.

Read more
How to populate ComboBox with data from Database in C#
11/19/2024 1:59:52 PM  7.04K

To populate a ComboBox with data from a database in a C# Windows Forms application using Entity Framework, follow these steps.

Read more