Easiest Way to Convert String to Decimal in VB.Net
Submitted by janobe on Thursday, February 7, 2019 - 13:14.
In this tutorial, I will teach you how to convert string to decimal in vb.net. This simple program will help you turn the whole number into decimal separated by commas in the easiest way. See the procedure below to find out what the process would be.
Output.
For any questions about this article. You can contact me @
Email – [email protected]
Mobile No. – 09305235027 – TNT
Or feel free to comment below.
Creating Application
Step 1
Open Microsoft Visual Studio 2015 and create a new windows form application for visual basic.
Step 2
Do the form just like shown below.
Step 3
Double click the button and do the following codes to convert the string to decimal when the button is clicked.- Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
- Dim strNumber As String = TextBox1.Text
- Dim dcmNumbers As Decimal
- dcmNumbers = strNumber
- If dcmNumbers >= 0 Then
- TextBox2.Text = dcmNumbers .ToString("##,###.00")
- Else
- dcmNumbers = Math.Abs(dcmNumbers )
- TextBox2.Text = dcmNumbers .ToString("##,###.00") & "-"
- End If
- End Sub

Add new comment
- 3017 views