Windows Forms

How to Export data from DataTable to Excel in C#
By Tan Lee Published on Jul 16, 2024 16.23K

You can export data from a DataTable to an Excel file in a C# Windows Forms application using libraries like EPPlus or Microsoft Office Interop.

Read more
How to Generate a backup script for SQL Server in C#
By Tan Lee Published on Jul 16, 2024 6.06K

To generate a backup script for SQL Server in a C# Windows Forms Application, you can use the Microsoft.SqlServer.Smo library, which is part of the SQL Server Management Objects (SMO) framework.

Read more
How to download multiple files in C#
By Tan Lee Published on Jul 16, 2024 11.84K

Downloading multiple files in parallel in a C# Windows Forms Application can be achieved using asynchronous programming techniques.

Read more
How to Move PictureBox with Arrow Keys in C#
By Tan Lee Published on Jul 16, 2024 10.01K

To move a PictureBox control using arrow keys in C#, you can handle the KeyDown event of the form or the control that hosts the PictureBox.

Read more
How to Send SMS with 3G Modem in C#
By Tan Lee Published on Jul 16, 2024 13.47K

To send an SMS message using a GSM or 3G modem with AT commands in a C# Windows Forms application, follow these steps.

Read more
How to make an Application auto run on Windows startup in C#
By Tan Lee Published on Jul 16, 2024 18.94K

To run a C# application at Windows startup, you can achieve this by creating a registry entry or adding a shortcut to the Startup folder.

Read more
How to send SMS Messages to Mobile in C#
By Tan Lee Published on Jul 16, 2024 25.13K

To send an SMS using Clickatell in a C# Windows Forms application, you need to follow these steps.

Read more
How to use Multiple Document Interface (MDI) in C#
By Tan Lee Published on Jul 16, 2024 8.02K

Creating an application contain multiple child form using Multiple Document Interface in C# Windows Forms.

Read more
How to make a TextBox AutoComplete in C#
By Tan Lee Published on Jul 16, 2024 9.14K

Making an auto complete TextBox using sql database in C# Windows Forms Application.

Read more
How to Embed YouTube Videos in C#
By Tan Lee Published on Jul 16, 2024 13.7K

To embed a Flash Player into a Windows Forms application in C#, you can use the Shockwave Flash Object COM component.

Read more