Windows Forms

How to pass ListView row data into another Form in C#
12/1/2024 2:29:02 PM  8.38K

To pass data from a ListView row to another form in C#, you can follow these steps.

Read more
How to use LINQ to SQL with Stored Procedures in C#
12/1/2024 2:18:19 PM  8.09K

An overview of using stored procedures with LINQ to SQL in C# Windows Forms

Read more
How to use Ribbon Control in C#
12/1/2024 1:45:06 PM  10.29K

To create a Ribbon form using the DevExpress Ribbon Control in a C# .NET Windows Forms application, you need to follow a series of steps to set up the DevExpress Ribbon Control and configure its UI elements.

Read more
How to create a Chart / Graph using RDLC Report in C#
12/1/2024 8:15:12 AM  12.55K

Creating a chart or graph in an RDLC (Report Definition Language Client-side) report using Microsoft Report Viewer involves several steps.

Read more
How to read and write to text file in C#
12/1/2024 8:02:55 AM  10.83K

In C#, reading from and writing to a text file can be done using classes in the System.IO namespace, such as StreamReader, StreamWriter, File, and FileInfo.

Read more
How to Insert Update Delete View and Search data from MySQL in C#
12/1/2024 7:54:45 AM  8.74K

To perform basic CRUD operations in C# with MySQL, you can use the MySQL.Data package, which provides a set of classes to connect to a MySQL database.

Read more
How to use SplashScreenManager in C#
12/1/2024 5:00:20 AM  9.09K

DevExpress SplashScreenManager is a powerful tool for displaying splash screens or wait forms in your application.

Read more
How to create Chart/Graph in C#
12/1/2024 4:53:20 AM  18.39K

Creating charts/graphs like bar, line, and pie charts with data from a SQL Server database using C# typically involves the following steps.

Read more
How to make a Countdown Timer in C#
12/1/2024 3:15:53 AM  16.66K

Creating a countdown timer in C# can be done using a System.Timers.Timer.

Read more
How to Create a Splash Screen with Progress Bar in C#
11/29/2024 9:38:58 AM  7.2K

Creating a splash screen with a progress bar in a C# Windows Forms Application involves a few steps.

Read more