How to Convert Currency String to Double in VB.Net

This Tutorial is all about How to Convert Currency String to Double in VB.Net In this tutorial you will be able to Convert Currency String to Double in VB.Net. So lets get Started:

  • First is open the Visual Basic, Select File on the menu, then click New and create a new project.

  • Then a New Project Dialog will appear. You can rename your project, depending on what you like to name it. After that click OK

  • After that, design your form like this just like what I’ve shown you below.
    Add a 2 Textbox, Label, & Button.
  • After Designing, Add this code to the Button.
    [vbnet]
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.ClickDim currencyTxt As Double = Double.Parse(TextBox1.Text, _
    Globalization.NumberStyles.Currency)
    TextBox2.Text = currencyTxt
    End Sub
    [/vbnet]
  • Add this code to the Textbox1.
    [vbnet]
    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
    TextBox1.Text = FormatCurrency(TextBox1.Text)End Sub

    [/vbnet]

  • Click F5 to run the Program.

Output:

If you have any comments or suggestions about on How to Convert Currency String to Double in VB.Net, please feel free to contact our webpage.

Download How to Convert Currency String to Double in VB.Net Here

Other Articles Readers might read:

Leave a Comment