Windows Forms

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

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

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

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

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 Create a Metro Login Form with SQL Database in C#
7/17/2024 1:03:10 AM  25.85K

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

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

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

Read more
How to Export DataTable to CSV in C#
7/16/2024 9:36:47 AM  5.02K

Exporting a DataTable to a CSV file in a C# Windows Forms application involves iterating through the rows and columns of the DataTable and writing them to a CSV file.

Read more
How to Export data from DataTable to Xml in C#
7/16/2024 9:33:47 AM  6.64K

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

Read more
How to Insert Update Delete From Database in VB.NET
7/16/2024 9:31:47 AM  33.81K

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

Read more