Search
How to convert string to date time in C#
By Tan Lee Published on Aug 02, 2024 676
To convert a string to a DateTime in C#, you can use several methods depending on the format of your date string.
Read moreHow to set up the Ezoic API for CDN Management
By Tan Lee Published on Feb 03, 2024 510
This example uses the Ezoic API to automatically purge pages from the ezoic CDN whenever your post or page is updated in c#.
Read moreHow to Get all drives in C#
By Tan Lee Published on May 06, 2024 565
In C#, you can retrieve all drives available in the system using the DriveInfo class from the System.IO namespace.
Read moreHow to use Generic Repository Multiple Includes in C#
By Tan Lee Published on Feb 16, 2024 1.08K
Using a Generic Repository pattern with Entity Framework (EF) can help to abstract and centralize data access logic in your application.
Read moreHow to set DataSource for RDLC Report using Report Viewer in C#
By Tan Lee Published on Feb 16, 2024 1.48K
To set up a DataSource for a local report using the ReportViewer control in a C# Windows Forms application, you can follow these steps.
Read moreHow to Change report in ReportViewer at runtime in C#
By Tan Lee Published on Feb 16, 2024 755
Changing a report in ReportViewer at runtime in a C# application can be achieved by setting a new report definition to the ReportViewer control.
Read moreHow to use DataTable in C#
By Tan Lee Published on Mar 13, 2021 20.12K
In C#, DataTable is a fundamental part of ADO.NET, used to store in-memory data in tabular form. It’s commonly used for handling data retrieved from a database or other data sources.
Read moreHow to Create a Metro ListView in C#
By Tan Lee Published on Jul 16, 2024 26.2K
To create a Metro ListView using the Metro Framework in a C# Windows Forms Application, follow these steps.
Read moreHow to Create a Material Design Login Form in C#
By Tan Lee Published on Jul 16, 2024 37.77K
Creating a Material Design login form using MaterialSkin for Windows Forms involves several steps to set up the necessary components, styles, and functionality.
Read moreHow to Make a Calculator in C#
By Tan Lee Published on Jul 16, 2024 24.39K
Creating a simple calculator in a C# Windows Forms Application involves designing a UI with buttons for numbers, operations, and a text box to display input and results.
Read more