Windows Forms

How to Get Checked Items In a CheckedListBox in C#
By Tan Lee Published on Jul 25, 2017 8.6K

In C#, you can retrieve the checked items from a CheckedListBox by iterating through its CheckedItems collection.

Read more
How Delete multiple Rows from DataGridView based on CheckBox selection in C#
By Tan Lee Published on Jul 25, 2017 8.98K

To delete multiple rows from a DataGridView in C# based on checkbox selection, you can follow these steps.

Read more
How to Recaptcha using tesseract ocr in C#
By Tan Lee Published on Jun 13, 2024 17.21K

To use Tesseract OCR for reCAPTCHA in a C# Windows Forms Application, you can do the following step.

Read more
How to check if file exists on Server in C#
By Tan Lee Published on Jun 08, 2024 4.88K

To check if a file exists on a web server in a C# Windows Forms application, you can use the HttpWebRequest class to send a HEAD request to the URL of the file.

Read more
How to use Progress Bar in C#
By Tan Lee Published on Feb 20, 2024 8.3K

To implement a progress bar using the Task Parallel Library in C#, you'll typically use a Progress<T> object to report progress from a background task to the UI thread.

Read more
How to Copy file with progress bar in C#
By Tan Lee Published on Feb 20, 2024 18.72K

Copying a file with a progress bar in a C# Windows Forms Application involves several steps, including setting up the UI components, handling the file copy operation, and updating the progress bar accordingly.

Read more
How to put ProgressBar in Button C#
By Tan Lee Published on Jun 08, 2024 9.52K

In a C# Windows Forms Application, you can't directly embed a ProgressBar into a Button control.

Read more
How to create a Digital Clock in C#
By Tan Lee Published on Jun 25, 2017 6.41K

Creating a digital clock in C# using the Timer control involves using a Windows Forms application where the Timer control triggers an event that updates the time display on a label every second.

Read more
How to Embed Youtube Video into a Windows Form in C#
By Tan Lee Published on Jul 27, 2017 6.54K

To embed a YouTube video into a Windows Forms application in C#, you can use a WebBrowser control to display the YouTube video by pointing it to the video URL.

Read more
How to Search DataGridView by using ComboBox and TextBox in C#
By Tan Lee Published on Jul 28, 2017 15.37K

To filter a DataGridView in C# using a ComboBox and a TextBox, you can follow these steps.

Read more