answersLogoWhite

0

you could highlight the line you wished and then go print and press the Print highlighted choice. this should work for you.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Where can you buy a Giraffe Print purse?

Michael Kors has designed a giraffe print purse. You can find it anywhere that sells his line. Try Nordstrom.com


Where can I find printable line graph worksheets?

There are many places online to find line graph worksheets that you can print out for your son. I would recommend education.com and superteacherworksheets.com.


What is the difference between echo cat and cat echo commands in Linux?

echo cat will print out the word 'cat' on the command line. cat echo will attempt to list the contents of a file called 'echo'.


What is an LPT1 on a computer?

It is a device file used for Parallel port. Consider the following command dir >prn (or) lpt1 dir >com1 dir >com2 that is the input is sent to the specified device file or device or a file.


What does 'print to file' mean?

From MS Word Help, which you probably could have looked up yourself: If you want to print your document at a much higher resolution than what's available on your desktop printer, you can select a different printer in the Print dialog box, format your document, print your document to a file, and take the file to a computer connected to the printer you selected, such as a service bureau. A printer file saves the necessary information from your document so that line and page breaks and font spacing remain the same. Any printer that uses the same printer language (for example, PostScript) can print the file and match the output from your computer, provided that the fonts used in the document are available on the printer. Also, when you use a printer file, you can print your document from a computer that doesn't have Word installed.


how To find average marks of student using files in c?

To find the average marks of a student using files in C, you can follow these steps: First, open the file containing the marks using fopen(), then read the marks line by line using fscanf() or fgets(). Accumulate the total marks and count the number of entries. Finally, calculate the average by dividing the total marks by the count, and print the result before closing the file with fclose().


Write a qbasic program to display A NEW LINE?

In QBasic, you can display a new line using the PRINT statement. To create a new line, you can simply use an empty PRINT statement. Here’s a simple example: PRINT "This is the first line." PRINT ' This will create a new line. PRINT "This is the third line." This program will display the first line, then move to a new line, followed by the third line.


How can print screen output in borland c plus plus?

Redirect the output to a file via the command line. Print the file. For example, if the program is named foo.exe, the output can be redirected to a file named foo.txt with the following command: foo.exe > foo.txt Everything sent to std::cout by the program will now be sent to the file instead. Everything sent to std::cerr will be displayed on screen as normal.


Where can you print out change of address forms for the US Post Office?

http://www.usps.com is where you can file your change of address on line.


Do line break characters print on the page as a thin horizontal line?

false, line break characters do not print.


Where would one find printable grocery coupons?

On line at grocery coupons sites . They are real easy to find and all you have to do is print them out.


How do you calculate 4 letter 5 letter words from a file using c programming?

To calculate the number of 4-letter and 5-letter words from a file in C, you can open the file using fopen() and read it line by line using fgets(). For each line, use the strtok() function to split the line into words and check the length of each word using strlen(). Increment counters for 4-letter and 5-letter words accordingly. Finally, close the file and print the counts.