Windows Forms

How to Insert Update Delete From Database in VB.NET
By Tan Lee Published on Jul 16, 2024 34.84K

Performing Insert, Update, and Delete operations in a VB.NET WinForms application using Entity Framework involves several steps.

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

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

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

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

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

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

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

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

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

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

Read more