Windows Forms: Live Currency Converter in C#
By FoxLearn 5/22/2017 8:52:18 PM 7.36K
How to Create a live currency converter or exchange rate in C#
Step 1: Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "LiveCurrencyConverter" and then click OK
Step 2: You need to add a web browser control to your form as below
Add code to handle form load event
private void Form1_Load(object sender, EventArgs e) { webBrowser.Navigate("https://www.google.com/finance/converter"); }
VIDEO TUTORIALS
- How to Send and Receive email in Microsoft Outlook using C#
- How to Print Windows Form in C#
- How to Use Form Load and Button click Event in C#
- How to use Advanced Filter DataGridView in C#
- How to use TagListControl in C#
- How to use Error Provider in C#
- How to Drag and Drop controls in C#
- How to Create a Random Password Generator in C#
Categories
Popular Posts
How to Download Chromedriver for Selenium
08/29/2024
C# Tutorial
07/20/2024
How to Download Microsoft SQL Server
06/22/2024