Windows Forms
How to Export data from DataTable to Excel in C#
7/16/2024 9:30:12 AM 15.6K
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 moreHow to Generate a backup script for SQL Server in C#
7/16/2024 9:29:02 AM 5.68K
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.37K
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.62K
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.44K
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.04K
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.26K
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.16K
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 12.93K
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 Embed Windows Media Player on a Form in C#
7/16/2024 9:15:53 AM 10.94K
To embed Windows Media Player in C# Windows Forms application allow you to play various media formats such as WMV, MP3, MP4, WAV, and MKV...etc, you can follow these steps.
Read more