Search

How to Send free SMS Message in C#
By Tan Lee Published on Jul 17, 2024 8.92K

To send free SMS messages using ipipi.com in a C# Windows Forms Application, you'll follow a similar approach to the one outlined earlier.

Read more
How to Create a Metro Login Form with SQL Database in C#
By Tan Lee Published on Jul 17, 2024 26.2K

Creating a Metro login form in a C# Windows Forms Application using Metro Framework and Dapper ORM with an SQL database involves several steps.

Read more
How to Create a Radial Menu in C#
By Tan Lee Published on Jul 16, 2024 15.08K

Creating and displaying a Radial Menu in a C# DevExpress Windows Forms application involves a few straightforward steps.

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

Exporting data from a DataTable to XML in a C# Windows Forms application is straightforward.

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

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

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

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

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

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