Windows Forms

Face Detection for .NET using Emgu CV in C#
1/13/2025 2:04:26 AM  23.11K

To detect faces using Emgu CV (OpenCV wrapper for C#) in a Windows Forms Application, you can follow these steps.

Read more
How to Read and Write csv file in C#
1/11/2025 3:46:00 AM  19.28K

To read CSV data into a DataGridView and write data back to a CSV file using the CsvHelper library in a C# Windows Forms application, follow these steps.

Read more
How to read .csv file in C#
1/11/2025 3:42:17 AM  30.11K

To read a CSV file into a DataTable and display it in a DataGridView in a C# Windows Forms application, you can follow these steps.

Read more
How to Add Items To ListBox from TextBox in C#
1/9/2025 9:02:05 AM  20.56K

To add items from a TextBox to a ListBox in a C# Windows Forms application, you can do the following step.

Read more
How to change the connection string in App.config dynamically in C#
1/9/2025 8:58:17 AM  34.85K

To change the ConnectionString at runtime in a C# Windows Forms application using App.config, you typically follow these steps.

Read more
How to make a WhatsApp Messenger in C#
1/9/2025 8:54:10 AM  10.02K

To create a WhatsApp messenger client in C# for sending and receiving messages, you need to use the WhatsApp API.

Read more
How to Update Progress Bar from Async Task in C#
1/9/2025 8:51:47 AM  34.57K

Using IProgress<T> to update a ProgressBar from an asynchronous Task in a C# Windows Forms Application involves a few steps to properly handle the progress reporting and UI updates.

Read more
How to zoom an image in C#
1/9/2025 8:49:48 AM  15.28K

To zoom an image in a PictureBox in C#, you can manipulate the Image property of the PictureBox by adjusting the SizeMode and scaling the image.

Read more
How to Change system date in C#
1/9/2025 8:40:42 AM  8.87K

To change the system date programmatically in a C# Windows Forms application, you can use the System.DateTime structure along with System.Diagnostics.Process to execute commands that change the system date.

Read more
How to use Wizard Control in C#
1/9/2025 8:32:31 AM  7.21K

To use a Wizard control in a C# Windows Forms Application using the AdvancedWizard library, you typically need to follow these steps.

Read more