Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
5answers
9k views

Display lines number in Stack Trace for .NET assembly in Release mode

Is there a way to display the lines in the stack trace for the .NET assembly build/deployed in Release mode? UPDATE: My application is divided into three class library projects and one ASP.NET ...
22
votes
7answers
36k views

Number of lines in a file in Java

I use huge data files, sometimes I only need to know the number of lines in these files, usually I open them up and read them line by line until I reach the end of the file I was wondering if there ...
18
votes
5answers
1k views

C/C++ line number

In the sake of debugging purposes, can I get the line number in C/C++ compilers? (standard way or specific ways for certain compilers) e.g if(!Logical) printf("Not logical value at line number ...
15
votes
6answers
8k views

Add line numbers in vim

How can I add line numbers to a range of rows in vim? Not as in ":set nu" - this just displays numbers, but doesn't add them to the file.
12
votes
9answers
10k views

How to get JavaScript caller function line number? How to get JavaScript caller source URL?

I am using the following for getting the JavaScript caller function name: var callerFunc = arguments.callee.caller.toString(); callerFuncName = (callerFunc.substring(callerFunc.indexOf("function") + ...
11
votes
4answers
605 views

Finding out what line number an element in the dom occurs on in Javascript?

Though I've never heard of this but, is it possible to retrieve a node from the DOM using JS, and then find out on what line of the file that node occurred on? I'm open to anything, alternative ...
11
votes
14answers
1k views

Why did we bother with line numbers at all?

When you write something in BASIC, you are required to use line numbers. Like: 10 PRINT "HOME" 20 PRINT "SWEET" 30 GOTO 10 But i wonder: who came up with the idea to use line numbers at all? It is ...
10
votes
3answers
2k views

How can I determine the current line number in JavaScript?

Does JavaScript have a mechanism for determining the line number of the currently executing statement (and if so, what is it)?
9
votes
4answers
3k views

WPF RichTextBox to create editor with line numbers

I'm creating a text editor for a domain specific language. I'm using the WPF RichTextBox as the basic control. I don't know how to gracefully include line numbering. Does anyone know of any examples?
8
votes
2answers
3k views

Number of lines from XCode project

I was wondering if there is anyway to count the total number of code lines from an XCode project. Thank you very much.
7
votes
2answers
411 views

How to access line numbers when wrapping Firebug (or similar) Console api

I have wrapped the console API to provide granular logging levels as well as few other sugar features. This works fine, the only problem is that firebug (or whatever other console) will always report ...
6
votes
2answers
342 views

Vim, how to map two tasks under one shortcut key?

i like to have line numbers ON in Vim but sometimes line numbers are annoying. I have shortcuts set in .vimrc: map <c-F12> :set nonumber<ENTER> map <c-F11> :set number<ENTER> ...
6
votes
2answers
466 views

Preserving original StackTrace/LineNumbers in .NET Exceptions

Understanding the difference between throw ex and throw, why is the original StackTrace preserved in this example: static void Main(string[] args) { try { ...
6
votes
4answers
12k views

displaying line number in rich text box c#

I have a Multiline richtextbox control into which i want to integrate the feature of adding a line number. i have considered many approaches Add a label and updating the line numbers as the line ...
6
votes
2answers
754 views

Setup Visual Studio 2005 to print line numbers

How can I get line numbers to print in Visual Studio 2005 when printing code listings?
5
votes
4answers
202 views

In R, how can read lines by number from a large file?

I have a file with 15 million lines (will not fit in memory). I also have a small vector of line numbers - the lines that I want to extract. How can I read-out the lines in one pass? Edit: I was ...
5
votes
4answers
74 views

Is there a way to make vim recognize line numbers at end of filenames?

I work almost exclusively in the terminal, and very often I need to view files that appear in error stacktraces. A very common format is /some/file:99, where 99 is the line number. I'd like to be able ...
5
votes
3answers
303 views

Relative Line Numbers In Emacs

Does anyone know how if something like this Vim Relative Line Numbers exists for emacs? I use vimpulse, and man, that would be super handy to have! I know some lisp, so if it doesn't, I could try to ...
5
votes
2answers
426 views

java decompiler with save line numbers in actual physical position

Many IDE's debugger match the physical line number. I'm looking for java decompiler with saving actual line number in decompiling code. http://java.decompiler.free.fr/ is not one.
5
votes
2answers
1k views

Why do I get no line numbers from a stack trace created from Exceptions?

Okay; assuming this code running in debug mode - static StackFrame GetTopFrameWithLineNumber(Exception e) { StackTrace trace = new StackTrace(e); foreach (StackFrame frame in ...
5
votes
3answers
5k views

How can I print source line number in Perl?

Is it possible to get the current source line number in Perl? The equivalent in C++ is __LINE__.
4
votes
3answers
503 views

How can I use #pragma message() so that the message points to the file(lineno)?

In order to add 'todo' items into my code, I want to put a message in the compiler output. I would like it to look like this: c:/temp/main.cpp(104): TODO - add code to implement this in order to ...
4
votes
2answers
92 views

When processing a file, how do I obtain the current line number?

When I am looping over a file using the construct below, I also want the current line number. with codecs.open(filename, 'rb', 'utf8' ) as f: retval = [] for line in f: ...
4
votes
3answers
748 views

How to get surrounding method in Java source file for a given line number

I have a line number of a Java source file and want to get the sourounding method for that line number programatically. I looked into ANTLR which didn't help me much. Janino (http://www.janino.net) ...
4
votes
1answer
394 views

Is there any #pragma or similar directive for generated C# code to match template code line numbers to C# line number?

I have a templating system that looks similar to old-style ASP code. I run this through a class that rewrites the entire thing into C# source code, compiles, and finally executes it. What I'm ...
3
votes
1answer
80 views

Command Line Tool to Acquire Java Method Line Numbers

I have a situation where I have line numbers as a piece of my data, but I am interested in what method they are contained within. My problem is that I need a tool that will acquire the line number ...
3
votes
2answers
347 views

Stack trace with incorrect line number

Why would a stack trace show "line 0", but only for one frame in the stack trace? eg. ... at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) at ...
3
votes
2answers
511 views

Output line number in Rails log file

From the Rails Guide on debugging, I found that I can customize output to my log files using this simple method: logger.debug "Person attributes hash: #{@person.attributes.inspect}" I decided use ...
3
votes
3answers
4k views

Delete specific line number(s) from a text file using sed?

I want to delete one or more specific line numbers from a file. How would I do this using sed?
3
votes
2answers
2k views

C++ Eclipse Galileo getting it to display line numbers - how?

EDIT: jldupont's suggestion (see below) did the trick Window -> Preferences -> General -> Editors -> Text Editors -> Show line numbers I just installed Eclipse Galileo (first time) and am ...
3
votes
6answers
735 views

HTML/CSS/JS: How to make an illusion of a textarea with line numbers?

I want to have a textarea which displays line numbers on the left. Wrap should be set to "off" (so that horizontal scrolling is available). I want to have my page as a single self-contained .html file ...
3
votes
5answers
8k views

Most Compact Way to Count Number of Lines in a File in C++

What's the most compact way to compute the number of lines of a file? I need this information to create/initialize a matrix data structure. Later I have to go through the file again and store the ...
3
votes
3answers
386 views

Method name from line number

Given a line number of a particular class source code (Java/C#) - is there an easy way to get the name of the method it falls within? (If it falls within one) (Presumably using an Abstract Syntax ...
3
votes
2answers
2k views

Remove line numbers from SyntaxHighlighter

Is there any way to remove the line numbers of SyntaxHighlighter? Thanks!
3
votes
1answer
2k views

VB.NET and ASP.NET DLL line numbers don't appear in production error logs

I can see line numbers in my error logs in our development environment, in which VB.NET 2005 and ASP.NET components are compiled in debug mode, with PDB files copied to the server on deployment. I ...
2
votes
1answer
35 views

Line numbers in jtextpane in Netbeans

I am using Netbeans 7.1. are there any option for displaying line numbers in jtextpane?
2
votes
2answers
67 views

How to get the range (i.e., the line number) of all functions in a file in C?

I want to get both the beginning and ending line numbers of all fucntions in a file in C. Does any one know that whether there is a easy-to-use tool in Linux for this purpose?
2
votes
6answers
102 views

Is there an easy way to tell which line number a file pointer is on?

In Python 2.5, I am reading a structured text data file (~30 MB in size) using a file pointer: fp = open('myfile.txt', 'r') line = fp.readline() # ... many other fp.readline() processing steps, which ...
2
votes
0answers
178 views

Get line numbers of fields without using a c# parser

I would like to get the line #s of a type's fields. To get the line #'s of the statements in a method it is simple enough: Type type = typeof(MyClass); MethodInfo methodInfo = ...
2
votes
3answers
531 views

Is there a way to copy code from eclipse including ine numbers

I am writing a little bit of documentation and code explanation. I would like to copy code from eclipse including line numbers, so that it becomes easier to reference the code in the text. Is there ...
2
votes
2answers
5k views

search text file using c# and display the line number and the complete line that contains the search keyword

I require help to search a text file (log file) using c# and display the line number and the complete line that contains the search keyword.
2
votes
6answers
832 views

How do I extract lines from a file using their line number on unix?

Using sed or similar how would you extract lines from a file? If I wanted lines 1, 5, 1010, 20503 from a file, how would I get these 4 lines? What if I have a fairly large number of lines I need to ...
2
votes
1answer
1k views

parsing XML file in python with cElementTree: dealing with errors and line number in the file

I am using the cElementTree library to parse XML files in Python. Everything is working fine But I would like to provide full error messages for the user when a value in the XML is not correct. For ...
2
votes
1answer
2k views

Current line number from a System.Xml.XmlReader (C# & .Net)

Does anyone know how I can get the current line number of an System.Xml.XmlReader? I am trying to record where in a file I find Xml elements.
2
votes
2answers
1k views

Is it possible to get the current line number when parsing an XML document with Xerces?

I have a java program that parses an XML document using xerces API. My parsing class extends org.apache.xerces.parsers.XMLDocumentParser, overloading the startElement, endElement, characters methods. ...
1
vote
1answer
20 views

JSR-45 (line numbers in JSP) support in Jetty

How do I get the stack traces coming from compiled JSPs to include line numbers from the actual JSP file, not the intermediate Servlet java file? I am using Jetty 8. I am currently taking up the ...
1
vote
1answer
261 views

PhpStorm background color line number

How to change background color of left panel (where line numbers). I want set it to dark. Because I using dark theme, but it left panel looks ugly with it :(
1
vote
2answers
593 views

how to print out line number during application run in VB.net

I would like to print out my debug message with line number in VB.net application. I did like this, Dim st As StackTrace Dim sf As StackFramee st = New StackTrace(New StackFrame(True)) sf = ...
1
vote
5answers
279 views

How can I include line numbers in Java source code?

I'm reaching the climax of my final year programming project, which is written in Java (using the Wicket web framework). I have to provide the examiners with the source code (on CD) with each line ...
1
vote
0answers
82 views

Relative line numbers in Visual Studio

I'm pretty sure I know the answer to this one cause I've been searching everywhere, but if anyone knows he's probably on this site. Is it possible to display line numbers that are relative to the ...

1 2