Hi Omar,
When you have ASP.net webserver also you can try this.
Open a new VB asp.net project.
Give it a name and enter
You get an aspx page.
You drag from the toolbox in your lefthand a textbox, a button and a label
on the page.
You right click on the page and open the code page.
There you see beneath 2 rows and that is the load event.
And a comment line with something as 'here you can put your code".
You place there
If not ispostback then
me.textbox1.text = "It is me"
end if
You go back to your form and pushes on the button, the code page will open
again for you.
In that button click event you type.
me.label1.text = me.textbox1.text
If I typed all things well and you did do this than when you debug it, there
will be shown a page with in the texbox "It is me"
If you enter there something else and push on the button, the text from the
textbox will be in the label.
That is all
I hope it works for you?
Cor