Windows Forms

How to make an Alarm clock in C#
11/21/2024 3:08:05 PM  13.67K

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 Load selected columns data in DataGridView in C#
11/21/2024 2:58:29 PM  5.21K

To load selected columns of data into a DataGridView in C#, you can follow these steps.

Read more
How to Save and Retrieve Image from SQL database in C#
11/21/2024 2:24:58 PM  19.24K

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
How to use BindingSource and BindingNavigator in C#
11/21/2024 2:04:38 PM  7.43K

Using BindingSource and BindingNavigator in a Windows Forms application simplifies data binding and navigation in a user interface.

Read more
How to insert Math Equation in RichTextBox in C#
11/21/2024 1:55:43 PM  3.79K

Inserting an equation or MathType-like content into a RichTextBox in a C# Windows Forms application can be approached in several ways.

Read more
How to Transfer Information between Forms in C#
11/21/2024 1:40:14 PM  5.27K

Transferring data between forms in a C# WinForms application can be achieved using several methods.

Read more
How to use Context Menu Strip in C#
11/21/2024 1:21:53 PM  4.98K

In a Windows Forms application in C#, a ContextMenuStrip is used to create context menus that appear when you right-click on a control or form.

Read more
How to Search files in directory in C#
11/21/2024 1:49:44 AM  11.07K

You can search for files in a directory and its subdirectories in a C# Windows Forms Application using the Directory class and the SearchOption.AllDirectories enumeration value.

Read more
How to Build a Metro-Style Web Browser with Tabs in C#
11/20/2024 1:28:24 PM  7.18K

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 more
How to Encrypt and Decrypt a String in C#
11/20/2024 1:09:05 PM  7.4K

The Eramake.eCryptography library provides a simple way to encrypt and decrypt strings in C#.

Read more