Something is not working properly because when you do a Debug.WriteLine("Something") it should com up on Immediate window.
First things first.
a) Go to menu Tools, then Options. Here make sure you have the "Show all settings" on the lower left side of the options screen selected.
b ) Navigate to: Debugging -> General
c) Make sure you have the option "Redirect all Output Window text to the Immediate Window"
That should fixe it.
To check it try this:
- Create a new windows forms project
- A Form1 will be created and displayed
- Drag a button from the toolbox
- Dbl click the button so you enter in de code window for the Click event.
- Write the necessary code to have something like this:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Debug.WriteLine("teste")
End Sub
- Run the app
- Press the button. Dont close the app anc check on VS.NET the Immediate window. See whats shown there.
Let us know if this fixed the problem.
Cheers
Please remember to mark the replies as answers if they help you.