Friday, November 5, 2021

US Dollar To Philippine Peso in VB.NET

 A simple program I will demonstrate how to convert US Dollar To Philippine Peso Using VB.NET.

  I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.







Program Listing


Public Class Form1


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Dim convert_pesos As Double


        convert_pesos = Val(TextBox1.Text) * 50.77


        Label2.Text = "$" & Math.Round(Val(TextBox1.Text), 2) & " US Dollar is equivalent to  PHP " & Math.Round(convert_pesos, 2)

    End Sub


    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

        TextBox1.Text = ""

        Label2.Text = " "

        TextBox1.Focus()

    End Sub


    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

        End

    End Sub

End Class


No comments:

Post a Comment