Original message moved by ebgreen
Reason : Moved to proper forum
Ok well this is a tutorial on how to make a simple program called greetings. Now what I have is some code that I made and all you have to do is copy and paste.
Now for the Microsoft Visual Basics 2008 Express Edetion, you will first start off by creating a new project. Select the Console Application and name it to somthing like Greetings or whatever you may want to name it. Then select OK. Then a window should pop up and say Module1.vb. Now you can copy the code and paste it in the document you just created after Sub Main ( ). The code is listed below.
Console.WriteLine ("Welcome to Visual Basics .NET Tutorial. Please suscribe!")
Console.Write ("Please type your name: ")
Dim name As string
name = Console.ReadLine ( )
Console.WeiteLine("Hello, {0} !", name)
Console.WriteLine ( )
Console.WriteLine ("Press Enter to quit...")
Console.ReadLine ( )
Now all this coding should work, but if there are any errors just let me know. Now hope you like the tutorial and have fun Programming.