Printing a partial sketch

Greetings,

I am running the Arduino environment 1.0.2 on Windows 7 and have opened a sketch written by someone else and I
would like to only print one section. This section is shown under one of the "tabs" marked DDS. When I open the
Print command it allows me to print all or print from pages 1 to 9999. I don't have that much paper.

Q1: How do I find out just how many pages this sketch would print as total?
Q2: how do I find out which page numbers the DDS section is? Quantity and Start/End page numbers?

I am trying to print on a HP 1210 connected to my PC. Am too new to use serial send to a parallel/serial
printer.

Any help/link appreciated. Am hoping this new code puzzle is the start of a new and very rewarding hobby.

Peace,
Adnok

Q1: How do I find out just how many pages this sketch would print as total?

Put the cursor on the last line of the file. The IDE will show you the line number. Divide the number of lines in the file by the number of lines per page to get the number of pages.

Q2: how do I find out which page numbers the DDS section is? Quantity and Start/End page numbers?

Each file prints separately. Quantity is the number of copies of the file you want to print. Start page is one, if you want the first page of the file. End page is wherever you want to stop. Leave the Print all option selected to print the whole file. It is unlikely to be 9,999 pages.

Or just copy and paste the code you want to print to a new sketch and print it.

Simple, direct answers that I overlooked but appreciate very much.
Thank you, fellas!

Peace,
Adnok