First thing VB2088 is .Net language so future request of help could be better if placed in the
VB.Forum 
VB.Net Forum
Lets startFile -> New Project
Select "New Windows Application"
Enter a project name (for now the default will do)
Click OK
This will open the main development enviroment
On the left is a panel called Toolbox, which contains components that can be dragged & dropped onto the form.
To the right of the Toolbox is the main GUI designer for ""Form1"
In the Toolbox look for the component called Textbox.
Click and drag one on to the Form1 GUI Designer.
Hover over the control and bring up the menu, select Properties.
This opens a another panel which contains all of the properties of the textbox.
Look through the properties for one called "(Name)";- This ID name of the control, change the name from "TextBox1" to "Txt_Name".
Go back to the Toolbox and drag another textbox on to form, name it "Txt_Greeting"
Go back to the Toolbox and drag a button on to form.
Change its name to "But_Welcome"
Change its text to "Welcome"
In the the form double click on the button.
This opens another window, which contains all the VB code related to Form1
You'll see the following
vb
Public Class Form1
Private Sub But_Welcome_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles But_Welcome.Click
End Sub
End Class
Click on the blank line before the
End subType the following code
vb
Txt_Greeting.Text="Welcome to </Dream.In.Code> " & Txt_Name.Text
This takes the text contained within the Textbox Txt_Name and joins it the end of the string "Welcome to </Dream.In.Code>"
Then place the result inside the textbox Txt_Welcome
Run the application by clicking on the green arrow
Enter your name and click on the button.
To stop the Application click the blue square. or close icon of the form.
To save. File -> Save All -> Save
I hope this is enough to get you started and welcome to forum.
This post has been edited by AdamSpeight2008: 12 Jul, 2008 - 06:57 AM