Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Output Pane in debug: "Front", "Back"

Status
Not open for further replies.

hollyni

Programmer
Feb 11, 2002
4
GB
does anyone know what the heck "Front" and "Back" are specifically referring to in the Output Pane? it occurs in all my programs during debug.
i've looked everywhere and can't find any reference to it in any helpfiles, books, or sites. it's definitely not something *i'm* putting out.
thanks in advance.
holly
 
I'm not seeing this.

Is this in a popup menu or something?

Chip H.
 
no, it's in the output window. the way my environment is set up, on the right hand side of the screen there are the following windows (tabbed, on top of each other): Call Stack, Breakpoints, Command Window, Output. when you run (any) program in debug, the Output Window has :
Front 1 Back 1 - but the numbers increment by various amounts. So, by the end of the program, my output window has a list of Front # Back # ' s.
 
Are these things appearing on the tab(s), or in the output window itself?

Chip H.
 
in the output window. i took a screen shot and uploaded it: in the lower right hand corner you'll see the "Front 144 Back 242" list. now, i don't have any arrays in this program, and 98 is not the size of anything in the program. i'm reading in lines of text, but they're not of size 98. Front and Back are not variables in my program. furthermore, the lines of text i'm reading in are different sizes from the lines i'm reading from a device that produces the same "Front...Back..." lines. but under both situations, the difference between front and back is 98.
 
I've never seen that.
In my debug window I get the usual stuff showing the symbols loaded, Console output, etc.
Code:
'/LM/w3svc/1/root/RequestAccepter-4-126932507322633952': Loaded 'c:\winnt\microsoft.net\framework\v1.0.3705\temporary asp.net files\requestaccepter\525b9d03\11132547\assembly\dl2\5903a235\001e4261_71f4c201\tde_requestprocessor.dll', Symbols loaded.
'/LM/w3svc/1/root/RequestAccepter-4-126932507322633952': Loaded 'c:\winnt\microsoft.net\framework\v1.0.3705\temporary asp.net files\requestaccepter\525b9d03\11132547\w59pmzby.dll', Symbols loaded.
'/LM/w3svc/1/root/RequestAccepter-4-126932507322633952': Loaded 'c:\winnt\microsoft.net\framework\v1.0.3705\temporary asp.net files\requestaccepter\525b9d03\11132547\hmdn2fgo.dll', Symbols loaded.

Obviously, you'd know if you put any Console.WriteLine statements in your code. What's the possibility that a 3rd party library left some WriteLines in?

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top