Whenever I press Debug on ANY code, it gives me this box:
If I press Break, it either freezes the program or returns me to the code.
Cancel returns me to the code.
Continue gives me the second text box. All the other text boxes just bring me back to the code.
This happens to ALL of the code, and all of them were stable just after last night when I tried to debug this code:
Code:
Function singNeverEndingSong()
' this will erase any text presently in the outputBox
outputBox.Text = ""
Dim outputText As String = ""
Dim loopCounter As Integer = 0
For loopCounter = 1 To 10
outputText = " This is the song that never ends, ... because.."
outputBox.AppendText(outputText + vbNewLine)
Next
End Function
The main problem is that nothing works anymore. I need to use VB03 for school, so up/downgrading is not an option.
I can't reinstall: I don't have the disks.
I tried to download mscorlib.dll from Google, with no luck.
Attached is my current mscorlib.dll file.
Also, since I can do nothing unless I can get this fixed, here's a video of EXACTLY what happens.