Coding Practice: Write a program in VB.NET to display some texts on computer screen

in hive-185836 •  3 years ago 

coding.jpg

Problem: Write a program in VB.NET to display some texts on computer screen


Hello, welcome everyone!
It's my first programming in VB.NET.
I am very much enjoying to VB.NET.
Thank you everyone!!

===============END===============

Code

'Write a program in VB.NET to display some texts on computer screen
'Hello, welcome everyone!
'It's my first programming in VB.NET.
'I am very much enjoying to VB.NET.
'Thank you everyone!!
'===============END===============

'Programmed by Phantom

Module VBModule
 
    Sub Main() 'main function
        Console.WriteLine("Hello, welcome everyone!")
        Console.WriteLine("It's my first programming in VB.NET.")
        Console.WriteLine("I am very much enjoying to VB.NET.")
        Console.WriteLine("Thank you everyone!!")
        Console.WriteLine("")
        Console.WriteLine("===============END===============")
    End Sub
  
End Module 'End of program


Result

Hello, welcome everyone!
It's my first programming in VB.NET.
I am very much enjoying to VB.NET.
Thank you everyone!!

===============END===============

Do it yourself on online VB.NET compiler: https://www.tutorialspoint.com/compile_vb.net_online.php

Or, download VB.NET
Download VB.NET for Windows 7, 8, 8.1 and Windows 10 (32-64 bit) with full/window screen mode and many more extra feature

Tomorrow I'll post another VB.NET problem with solution.
Have a nice day.
Thank you very much.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!