I haven't seen a lot of threads with tutorials recently, so I'm going to make a thread of mine, and add tutorials as i see fit.
Feel free to PM me an idea :P.
Tutorial 1
Difficulty: 1
What you need: Visual Basic 2008
1 Textbox
1 label
1 button
In this tutorial, we are going to create a little program to say "You click a button!"
Lets begin.
Start a new project, and select a windows form application. Name it whatever you want. Add a button, label and a textbox.
Place the button at the top. Label below it, and textbox below the label.
Now, make the textbox read only, in the properties.
Double click the button, and add this code.
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox1.Text = "You click a button!" 'Changes the textbox's text
Label1.Text = "You click a button!" 'Changes the label's text
MsgBox("You click a button!") 'Makes a messagebox pop up
End Sub
After that debug it, and click the button!
It should change the textboxes text, labels, and pops up a message box.
(Will add more later, its late so tomorrow probably.)