I am having a similar problem. I am using visual basic express 2008 and running vista. I don't know if i am even in the ballpark because or all the bugs that occur whenever i try to run vb apps. can anyone help?
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim x As Integer
Dim y As Integer
Dim z As Integer
x = 1
y = 1
For count As Integer = 1 To 10
y = x
x = z
z = x + y
Label1.Text = (x + y).ToString _
& ControlChars.NewLine
count += 1
Next count
End Sub