Sup im kinda new to vb & i think my vb is jacked up

Very randomly whenever i do something like txtSomeText.Text = "Hello" or cmdSomeCommand.Caption = "Click me!" and run it ill get an error like "Compile Error: Method or DataMember not found" and the .Text or .Caption will be highlighted.
Heres the code to a calculator project i made a while back. I know the code is crap and wont work, but i shouldnt be getting that compile error thing.
CODE
Option Explicit
Dim Value1 As Double
Dim Value2 As Double
Dim Value3 As Double
Private Sub cmdAdd_Click(Index As Integer)
Value3 = Value1 + Value2
End Sub
Private Sub Form_Load()
txtV1.Text = Value1
txtV2.Text = Value2
txtOutput.Text = Value3
End Sub
http://www.sendspace.com/file/9q3zdl = Link to full source to see what i mean when i do run

The calculator project is just an example.. Just earlier today i was half way done w/ a CSS Generator i was making to edit myspace profiles & i got same error & now i dont believe i will be able to finish

.