Windows Forms
How to create a Chromium Browser with Tabs in C# using CefSharp
By Tan Lee Published on Jul 16, 2024 20.76K
Using Chromium Browser with tabs involves creating a Windows Forms in C# and integrating CefSharp as the embedded browser.
Read moreHow to Export DataTable to PDF in C#
By Tan Lee Published on Jul 16, 2024 12.35K
Exporting data from a DataTable to a PDF using iTextSharp in a C# Windows Forms application involves several steps.
Read moreHow to use Error Provider in C#
By Tan Lee Published on Jun 15, 2024 20K
In C# Windows Forms, the ErrorProvider component is used to provide visual indications of errors or warnings associated with user input controls, such as textboxes or comboboxes.
Read moreHow to use Advanced Filter DataGridView in C#
By Tan Lee Published on Mar 19, 2024 27.85K
Filtering a DataGridView by columns in C# using the Advanced DataGridView control involves several steps including setting up the control, handling user input for filtering, and applying filters dynamically.
Read moreHow to Create and use User Control in C#
By Tan Lee Published on Jul 16, 2024 62.86K
Creating a user control in a C# Windows Forms application is a straightforward process.
Read moreHow to Create a System tray Notification in C#
By Tan Lee Published on Jul 16, 2024 9.89K
To create a system tray application in C# using the NotifyIcon control, how to minimize your application to the system tray, display a balloon tip with custom title and description, and ensure proper handling of application exit.
Read moreHow to Create a PDF document file in C#
By Tan Lee Published on Jul 16, 2024 9.72K
Creating a PDF document in C# using iTextSharp involves several steps.
Read moreHow to Encrypt and Decrypt data using RSA in C#
By Tan Lee Published on Jun 01, 2024 20.66K
Encrypting and decrypting strings using the RSA algorithm in a C# Windows Forms Application involves generating RSA key pairs, encrypting the data with the public key, and decrypting it with the private key.
Read moreHow to Send and Receive email in Microsoft Outlook using C#
By Tan Lee Published on Jun 02, 2017 14.87K
To send and receive emails in C# using Microsoft Outlook, you can use the Microsoft.Office.Interop.Outlook library, which provides a way to interact with Outlook programmatically.
Read moreHow to use Context Menu Strip in C#
By Tan Lee Published on Jul 15, 2017 5.92K
In a Windows Forms application in C#, a ContextMenuStrip is used to create context menus that appear when you right-click on a control or form.
Read more