Windows Forms

How to create excel file in c# using dataset
By Tan Lee Published on Nov 05, 2024 581

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#
By Tan Lee Published on Jul 25, 2017 5.75K

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#
By Tan Lee Published on Jul 25, 2017 10.16K

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#
By Tan Lee Published on Jun 01, 2017 17.18K

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

Read more
How to make a Notepad in C#
By Tan Lee Published on Jun 02, 2017 8.09K

Creating a simple Notepad application in a C# Windows Forms Application is a great way to get familiar with Windows Forms and file handling.

Read more
How to Receive SMS from WhatsApp in C#
By Tan Lee Published on Jul 12, 2017 9.72K

To receive WhatsApp messages using C#, you typically need to interact with the WhatsApp Business API or a third-party library, as the official WhatsApp API does not allow direct message reading without proper setup.

Read more
How to read an excel (.xls/.xlsx) file in C#
By Tan Lee Published on May 24, 2017 7.01K

To read an Excel file (.xls or .xlsx) in a C# Windows Forms application using the ExcelDataReader library.

Read more
How to create a Metro Live Tiles in C#
By Tan Lee Published on May 28, 2017 11.95K

Creating Metro Live Tiles using the Metro Framework in C# involves a few key steps.

Read more
How to Create Multiple pages on the Form using Panel control in C#
By Tan Lee Published on Jun 05, 2017 20.33K

Creating multiple pages on a form using the Panel control in a Windows Forms application in C# can be a useful approach for creating tabbed interfaces or wizard-like interfaces.

Read more
How to insert Math Equation to RichTextBox in C#
By Tan Lee Published on Jun 05, 2017 9.96K

In C#, the RichTextBox control does not natively support inserting or rendering complex mathematical equations or MathType objects directly.

Read more