Windows Forms

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

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

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

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

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

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 15.93K

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

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

Read more
How to create multi language using Resource Manager and Culture Info in C#
By Tan Lee Published on Jul 31, 2017 14.41K

To create a multi-language application in C# Windows Forms using Resource Manager and CultureInfo, follow these steps.

Read more
How to Encode and Decode QR Code in C#
By Tan Lee Published on May 23, 2017 13.78K

To encode and decode QR codes using the MessagingToolkit.QRCode library in a Windows Forms application, you need to follow these steps

Read more
How to Load selected columns data in DataGridView in C#
By Tan Lee Published on Jul 29, 2017 5.93K

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

Read more