I have an app with 3 forms and in form 2 I have this code

Code:
Form3.Button1.Text = "1"
Form3.Button2.Text = "1"
When I use the step through debugger to find an error in my code I get an error

“There is no source code available for the current location”

Which I take to mean that there is no source code in Form2 for Form3

This may or may not be right but the bottom line is I need to find the error in the label text on form3 which is from data in form2 how do I do it? And why an I getting this error when using the debugger?