Windows Forms

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

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.63K

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.5K

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

Read more
How to link Combobox with database values in C#
By Tan Lee Published on Jul 29, 2017 6.46K

To link or fill a ComboBox with database values in C#, you can follow these steps.

Read more
How to Download a File from Internet in C#
By Tan Lee Published on Jun 25, 2017 15.55K

Downloading a file from the internet in C# can be done using the HttpClient class or the WebClient class.

Read more
How to Upload files with FTP in C#
By Tan Lee Published on Jun 20, 2017 16.55K

Uploading a file to an FTP server in a C# Windows Forms application involves using the System.Net namespace, particularly the FtpWebRequest class.

Read more
How to Convert Image to Pdf in C#
By Tan Lee Published on May 20, 2024 6.27K

To convert an image to a PDF using PdfSharp in a C# Windows Forms Application, you'll need to follow these steps.

Read more
How to Copy file to another directory in C#
By Tan Lee Published on Jul 16, 2024 11.32K

To copy a file to another directory in a C# Windows Forms application, you can use the System.IO.File class, which provides a convenient method called Copy.

Read more
How to Open and Read Excel Files in C#
By Tan Lee Published on May 14, 2024 16.1K

To open and read Excel files in a C# Windows Forms Application using ExcelDataReader and ExcelDataReader.DataSet, follow these steps.

Read more
How to make a Calculator using Dynamic Formula in C#
By Tan Lee Published on May 27, 2017 7.85K

Creating a calculator using dynamic formulas in a C# Windows Forms application involves several steps.

Read more