Windows Forms

How to Export data from DataTable to Excel in C#
7/16/2024 9:30:12 AM  16.22K

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#
7/16/2024 9:29:02 AM  6.05K

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#
7/16/2024 9:27:21 AM  11.83K

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#
7/16/2024 9:26:47 AM  10K

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#
7/16/2024 9:16:45 AM  13.44K

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#
7/16/2024 9:07:18 AM  18.91K

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#
7/16/2024 9:04:08 AM  25.12K

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#
7/16/2024 9:02:15 AM  8K

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#
7/16/2024 9:01:20 AM  9.12K

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

Read more
How to Embed YouTube Videos in C#
7/16/2024 8:59:42 AM  13.69K

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

Read more