Windows Forms
How to Generate a backup script for SQL Server in C#
7/16/2024 9:29:02 AM 5.8K
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 moreHow to download multiple files in C#
7/16/2024 9:27:21 AM 11.52K
Downloading multiple files in parallel in a C# Windows Forms Application can be achieved using asynchronous programming techniques.
Read moreHow to Move PictureBox with Arrow Keys in C#
7/16/2024 9:26:47 AM 9.72K
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 moreHow to Encrypt and Decrypt files using AES encryption algorithm in C#
7/16/2024 9:26:02 AM 25.69K
Encrypting and decrypting files using AES encryption in a C# Windows Forms application involves several steps.
Read moreHow to Create Barcode Images from a string in C#
7/16/2024 9:25:12 AM 12.16K
Creating barcode images from a string in a C# Windows Forms application using the BarcodeLib library is quite straightforward.
Read moreHow to Create Barcode Image in VB.NET
7/16/2024 9:24:33 AM 11.42K
Creating a barcode image using BarcodeLib in a VB.NET Windows Forms Application is straightforward.
Read moreHow to Extract the Icon Associated with a File in C#
7/16/2024 9:18:37 AM 6.33K
You can extract the icon associated with a file in a C# Windows Forms application using the Icon.ExtractAssociatedIcon method from the System.Drawing namespace.
Read moreHow to Send SMS with 3G Modem in C#
7/16/2024 9:16:45 AM 13.1K
To send an SMS message using a GSM or 3G modem with AT commands in a C# Windows Forms application, follow these steps.
Read moreHow to make an Application auto run on Windows startup in C#
7/16/2024 9:07:18 AM 17.79K
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 moreHow to send SMS Messages to Mobile in C#
7/16/2024 9:04:08 AM 24.84K
To send an SMS using Clickatell in a C# Windows Forms application, you need to follow these steps.
Read more