Windows Forms

How to send mail using Gmail SMTP Server in C#
7/17/2024 4:15:40 AM  14.32K

Sending email using Gmail's SMTP server in a C# Windows Forms Application involves using the SmtpClient class from the System.Net.Mail namespace.

Read more
How to Create Material MessageBox in C#
7/17/2024 4:14:21 AM  14.14K

Creating a Material Design-styled MessageBox in a C# Windows Forms Application using Material Skin involves using a custom dialog form with Material Skin controls.

Read more
How to Send free SMS Message in C#
7/17/2024 4:13:11 AM  7.93K

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 Print RDLC Report without Report Viewer in C#
7/17/2024 2:03:28 AM  30.66K

To print an RDLC report without using the Report Viewer control in a C# Windows Forms application, you can follow these steps.

Read more
How to Encrypt and Decrypt ConnectionString in App.config file in C#
7/17/2024 2:02:37 AM  36.06K

Encrypting connection strings in app.config or web.config in C# is a common practice to secure sensitive information such as database credentials.

Read more
How To Add Watermark Text To Images in C#
7/17/2024 1:59:31 AM  6.71K

Adding a watermark text to images in a C# Windows Forms Application involves a few steps, primarily dealing with image manipulation and drawing text on the image.

Read more
How To Open and Read an Excel file into a ListView in C#
7/17/2024 1:55:30 AM  10.24K

To open and read an Excel spreadsheet into a ListView in a C# Windows Forms Application, you'll need to use the Microsoft.Office.Interop.Excel library, which allows you to interact with Excel files programmatically.

Read more
How to Create a Metro Login Form with SQL Database in C#
7/17/2024 1:03:10 AM  25.46K

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#
7/16/2024 12:50:16 PM  13.94K

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

Read more
How to Export DataTable to PDF in C#
7/16/2024 9:38:09 AM  11.38K

Exporting data from a DataTable to a PDF using iTextSharp in a C# Windows Forms application involves several steps.

Read more