A program that will ask the user to give a number and then the program will reverse the arrangement of the given number using Microsoft Visual Basic NET programming language.

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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================



You can buy my C++ book online at  



Beginner’s Guide To C++ Programming
You can buy my book in introduction to computer networking at https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking Want to support my channel? GCash Account Jake Pomperada 09173084360 Paypal https://paypal.me/jakerpomperada Patreon https://www.patreon.com/jakerpomperada Thank you very much for your support.

Program Listing

Public Class Form1

    Function ReverseNumber(ByVal number As Integer) As Integer
        Dim numberString As String = number.ToString()
        Dim reversedString As String = String.Empty

        For i As Integer = numberString.Length - 1 To 0 Step -1
            reversedString += numberString(i)
        Next

        Dim reversedNumber As Integer
        Integer.TryParse(reversedString, reversedNumber)
        Return reversedNumber
    End Function

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

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

        number = Val(TextBox1.Text)
        Dim reversedNumber As Integer = ReverseNumber(number)
        TextBox2.Text = number
        TextBox3.Text = reversedNumber
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        TextBox1.Text = ""
        TextBox2.Text = ""
        TextBox3.Text = ""
        TextBox1.Focus()
    End Sub
End Class