Windows Forms

How to use a Custom control in C#
11/3/2024 2:43:20 PM  5.32K

Creating a custom picture box with scrollbars in C# involves deriving a new control from Control and implementing the necessary functionality to handle scrolling.

Read more
How to Get value from another Form in C#
11/3/2024 2:31:30 PM  9.1K

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 Convert string to binary in C#
11/2/2024 3:54:15 AM  5.48K

To convert a string to binary representation in a C# Windows Forms Application, you can follow these steps.

Read more
How to Create Login Form with Access Database in C#
10/11/2024 3:35:30 AM  16.67K

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#
10/6/2024 3:33:49 AM  7.62K

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#
10/6/2024 3:19:49 AM  9.36K

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#
10/5/2024 3:55:43 AM  6.73K

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#
10/5/2024 3:35:23 AM  11.55K

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

Read more
How to Add Combobox to DataGridView in C#
9/16/2024 10:03:29 AM  9.28K

To add a ComboBox to a DataGridView in a Windows Forms application using C# and Entity Framework (Database First approach), you need to follow these steps.

Read more
How to Decompile .NET DLL to Source Code using Reflector
9/16/2024 9:48:07 AM  10.95K

To decompile a .NET DLL to C# source code using Reflector, you can follow these steps.

Read more