i have been making a program using vb2005 but now it is done i have found that it will only work on a computer with .net framework 2.0beta which is currently only in windows vista and not in windows xp unless you download it from microsoft.
because of this i have been trying to re-do my program in vb2003.
however. using all the code that i have learn't for vb2005 i have ended up with 37 build errors , most of which are
'Reference to a non-shared member requires an object reference'
for example
Private Sub Form4_Move(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Move
Form1.Location = Me.Location
Form2.Location = Me.Location
Form3.Location = Me.Location
End Sub
creates an error for Form1.Location , Form2.Location , and Form3.Location.
i'm sure it's something simple that i have missed out but i don't know what and i can't find the solution by searching the internet.
can anyone explain what is wrong?