Windows Forms

How to use Metro Progress Bar in C#
11/15/2024 9:23:03 AM  12.74K

To use the Metro Progress Bar in a C# Windows Forms application, you typically need a library that provides a modern "Metro-style" UI component.

Read more
How to Create Report Viewer using Stored Procedure in C#
11/14/2024 12:30:46 PM  12.07K

Creating an RDLC report with the Report Viewer using Entity Framework and a stored procedure in C# involves several steps.

Read more
How to create a Web Browser in C#
11/12/2024 9:56:23 AM  6.72K

Creating a simple web browser in C# using Windows Forms is relatively easy, thanks to the WebBrowser control provided by .NET.

Read more
How to read an image file in C#
11/12/2024 9:30:53 AM  3.9K

To read an image file in a C# Windows Forms application, you typically use the System.Drawing namespace, which provides classes for working with images.

Read more
How to use BackgroundWorker in C#
11/12/2024 9:20:37 AM  7.73K

The BackgroundWorker class in C# is used for running operations on a separate, dedicated thread in the background, allowing the UI to remain responsive.

Read more
Insert Update Delete and View data from SQL Database using ORM Lite in C#
11/11/2024 3:03:58 PM  6.65K

To perform Insert, Update, Delete, and View operations on student profile data using ORM Lite and Metro Framework in a C# Windows Forms application, you need to follow these steps.

Read more
How to create excel file in c# using dataset
11/5/2024 9:35:15 AM  440

To create an Excel file in C# using a DataSet, you can use libraries like EPPlus or ClosedXML for handling Excel file creation.

Read more
How to use a Custom control in C#
11/3/2024 2:43:20 PM  5.62K

Creating a custom picture box with scrollbars in C# involves deriving a new control from Control and implementing the necessary functionality to handle scrolling.

Read more
How to Get value from another Form in C#
11/3/2024 2:31:30 PM  9.85K

To get a value from another form in a C# Windows Forms application, you typically use properties or methods in the target form to expose the data you need.

Read more
How to Create Login Form with Access Database in C#
10/11/2024 3:35:30 AM  17.02K

Creating a login form in C# that interacts with an MS Access database using a DataSet involves several steps.

Read more