|
-
Jan 27th, 2012, 10:44 AM
#1
Thread Starter
Lively Member
debug.writeline or trace.writeline -- no output
Hi
in VS 2008, I started a new VB console project, using default options. I wrote this simple program:
Module Module1
Sub Main()
Dim ArrayOfInts() As Integer
ArrayOfInts = New Integer() {1, 2, 3, 4, 5, 6, 7, 8, 9}
For i = 0 To ArrayOfInts.Length - 1
Debug.WriteLine(ArrayOfInts(i))
Trace.WriteLine(ArrayOfInts(i)) Next End Sub End Module
...then ran it under debug (I just hit F5)
However, I cannot find the output from the calls to writeline. Not in the Output window, not in the Immediate window and not in the console output. So...where is it going?
Or, do I need to do something extra to get these to appear?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|