Here is a little bit of info on myself.
VB.Net
SQL
PHP
Perl
HTML
Cold Fusion
C++
Visual C++
JavaScript
ASP
JSP
10 cls
20 let a = a number
30 let b = a number
40 a = 6
50 b = 4
60 print a + b
70 goto 20
80 end
run
K lets get started.
First we'll start with windows form in vb
Start a new windows project the form will show on the screen. Go to the toolbox and drag in a textbox and a button onto your form
Now double click the button to go to the code behind. take a look at the line of code already inputted for you
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
End Sub
now type in textbox1.text = "Hello World" so the code look like this.....
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
textbox1.text = "Hello World"
End Sub
press F5 to make it run and when the page loads hit the button and watch Hello World appear in the textbox.
Well wasn't that easy View the project
..... In the Next section we'll get into some data access Next Project