Sunday, May 2, 2021

Multi Line Message Box in Visual Basic NET

 I created this video to demonstrate how to create multi line message box using Microsoft Visual Basic 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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com






Program Listing

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

        MsgBox("This program was created by" & vbCrLf & vbCrLf & _

               "Mr. Jake Rodriguez Pomperada, MAED-IT, MIT" & vbCrLf & vbCrLf & _

               "www.jakerpomperada.com and www.jakerpomperada.blogspot.com" & vbCrLf & _

               "jakerpomperada@gmail.com" & vbCrLf & "Bacolod City, Negros Occidental Philippines.", vbInformation, "About this Program")

        TxtUsername.Focus()

    End Sub

No comments:

Post a Comment