Windows Forms
How to Record voice in C#
By Tan Lee Published on Jun 12, 2024 11.39K
To record audio from a microphone in C# Windows Forms Application, you can use the Win32 API.
Read moreHow to record audio from microphone in C#
By Tan Lee Published on Jul 13, 2024 2.58K
To record audio from a microphone in C#, you can use the NAudio library, which is a popular library for working with audio in .NET.
Read moreHow to open pdf file in browser in C#
By Tan Lee Published on Jul 12, 2024 2.07K
To display a PDF within a Windows Forms application using C#, you can use the WebBrowser control, which is capable of rendering PDF files if Adobe Acrobat Reader or another PDF viewer plugin is installed on the user's machine.
Read moreHow to Add the Form in Panel from another Form in C#
By Tan Lee Published on May 18, 2024 36.05K
In a C# Windows Forms Application, opening a form inside a panel involves creating an instance of the form and setting its TopLevel property to false to indicate that it will be hosted within another container.
Read moreHow to Upload Image to Server in C#
By Tan Lee Published on Jul 17, 2024 14.22K
To upload an image to a web server in a C# Windows Forms application, you can use the HttpClient class or RestSharp to send a POST request with the image data as a multipart form data.
Read moreHow to create a SplashScreen in C#
By Tan Lee Published on Jul 18, 2017 8.39K
To create a splash screen in a C# application using DevExpress, you can utilize the SplashScreenManager class provided by the DevExpress framework.
Read moreHow to make a WhatsApp Messenger in VB.NET
By Tan Lee Published on Jun 01, 2017 31.68K
How to convert from C# to VB.Net and How to make a WhatsApp Messenger in Visual Basic .Net
Read moreHow to Create a custom Progress Bar with Percentage in C#
By Tan Lee Published on Jul 15, 2017 15.7K
Creating a custom progress bar with a percentage in C# Windows Forms is straightforward.
Read moreHow to Print DataGridView with Header and Footer in C#
By Tan Lee Published on Jul 13, 2024 8.72K
Printing a DataGridView with header and footer in C# involves several steps, including setting up the printing functionality, handling page breaks, and customizing headers and footers.
Read moreHow to Copy a Selected Row From one DataGridView to another DataGridView in C#
By Tan Lee Published on Aug 13, 2017 13.52K
Copy selected row from one DataGridView to another DataGridView in C#
Read more