printing only half of the text

I don't see the bottom half of the text when I print my document. How can I solve this problem?

Hi Casshirtz76,

Open the drive, go to menu help & repair the installation.

Otherwise try to print as image PDF print as image. Adobe Acrobat, Reader.

Check if it solves your problem.

Kind regards
Nicos

Tags: Acrobat

Similar Questions

  • My printer prints only half of the document, even when I try to print a Test Page. Said troubleshooting that have no problem

    Original title: device: printer

    Dear Sir/Madam,

                        
    I am a user of windows from win98, and I never had a problem with the printer that I couldn't solve. But now, my printer prints only half of the document, and troubleshooting said: there is no problem, I printed the rpinter windows test page, but I only got half! in view of this, I wonder if you would be so kind as to send me the solution to my problem, my resources and understanding have exhausted. Thank you in anticipation of your kind cooperation.

    Hi Sergio,

    We would like to ask after the details with you to help you to come.

    (1) what is the brand and model of your computer?

    (2) don't you make changes to the printer settings prior to this problem?

    (3) is the issue limited to any particular document?

    (4) do you get an error when the printer is unable to print?

    You might face this question when the printer drivers are corrupt or if the Windows service does not work properly. Follow the troubleshooting methods listed below.

     

    Solve printer problems

    http://Windows.Microsoft.com/en-in/Windows/printer-problems-in-Windows-help#fix-printer-problems=Windows-7&V1H=win8tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    You can check the link below.

    Why can I not print?

    http://Windows.Microsoft.com/en-in/Windows7/why-cant-i-print

    Check the question and write us with the State of the question. We will help you if you need assistance.

  • PrintDataGrid of printing only half of the page

    Hello

    I have a print of my report with PrintDataGrid problem. I just copied and paste the sample code from this site form, but she seems to have a problem. Printing in the book is only half and jump to another page. rank 1-6 is on the first page and the rest is on the next page that was supposed to be on a single page. I am asking your help to find ways to print correctly.

    Here, I have the code:

    FormSalesTransaction.mxml

    <fx:Script>
              <![CDATA[
                   import mx.core.*
                        
                        // Declare and initialize the variables used in the component.
                        // The application sets the actual prodTotal value.
                   [Bindable]
                   public var pageNumber:Number = 1;
                   [Bindable]
                   public var prodTotal:Number = 0;
                   
                   // Control the page contents by selectively hiding the header and
                   // footer based on the page type.
                   public function showPage(pageType:String):void 
                   {
                        if(pageType == "first" || pageType == "middle") 
                        {
                             // Hide the footer.
                             footer.includeInLayout=false;
                             footer.visible = false;
                        }
                        if(pageType == "middle" || pageType == "last") 
                        {
                             // The header won't be used again; hide it.
                             header.includeInLayout=false;
                             header.visible = false;
                        }
                        if(pageType == "last") 
                        {
                             // Show the footer.
                             footer.includeInLayout=true;
                             footer.visible = true;
                        }
                        //Update the DataGrid layout to reflect the results.
                        validateNow();
                   }
              ]]>
         </fx:Script>
         
         <!-- The template for the printed page, 
         with the contents for all pages. -->
         <mx:VBox width="90%" horizontalAlign="left">
              <mx:Label text="Page {pageNumber}"/>
         </mx:VBox>
         <MyComp:FormPrintHeader id="header"/>
         
         <mx:PrintDataGrid id="myDataGrid" 
                               height="100%"
                               width="100%"
                               fontSize="7" 
                               wordWrap="true" 
                               variableRowHeight="true" 
                               fontFamily="Lucida Console" >
              <!-- Specify the columns to ensure that their order is correct. -->
              <mx:columns>
                   <mx:DataGridColumn headerText="Invoice" dataField="InvoiceNo" width="65"/>
                   <mx:DataGridColumn headerText="Customer" dataField="CustomerName" width="100"/>
                   <mx:DataGridColumn headerText="Model" dataField="ModelNo" width="70"/>
                   <mx:DataGridColumn headerText="Category" dataField="CategoryCode" width="70"/>          
                   <mx:DataGridColumn headerText="Price" dataField="Price" width="80"/>
                   <mx:DataGridColumn headerText="Qty" dataField="Quantity" width="35"/>                    
                   <mx:DataGridColumn headerText="Cash" dataField="Cash" width="80"/>
                   <mx:DataGridColumn headerText="Dollar" dataField="Dollar" width="80"/>
                   <mx:DataGridColumn headerText="Cr Card" dataField="CreditCard" width="80"/>
                   <mx:DataGridColumn headerText="B Share" dataField="Bankshare" width="80"/>
                   <mx:DataGridColumn headerText="W Tax" dataField="WTax" width="80"/>
                   <mx:DataGridColumn headerText="Lay Dep" dataField="LayawayDP" width="80"/>
                   <mx:DataGridColumn headerText="Lay Bal" dataField="LayawayBal" width="80"/>
                   <mx:DataGridColumn headerText="Check" dataField="Check" width="80"/>
                   <mx:DataGridColumn headerText="Misc" dataField="Misc" width="80"/>
                   <mx:DataGridColumn headerText="Remarks" dataField="Remarks"/>
                   <mx:DataGridColumn headerText="Lay Pay" dataField="LayawayPayment" width="80"/>
              </mx:columns>
         </mx:PrintDataGrid>
    

    and the way that I call Report.mxml:

    var printJob:FlexPrintJob = new FlexPrintJob();
                        
    if (printJob.start()) {
            var thePrintView:FormSalesTransaction = new FormSalesTransaction();
         addElement(thePrintView);
                             
         thePrintView.width=printJob.pageWidth;
         thePrintView.height=printJob.pageHeight;
                                                 
         thePrintView.prodTotal = prodTotal;
                             
         thePrintView.myDataGrid.dataProvider = salesTransaction;
                             
         thePrintView.validateNow();
                             
         if(!thePrintView.myDataGrid.validNextPage)
         {
              thePrintView.showPage("single");
              printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
         }
         else
         {
              thePrintView.showPage("first");
              printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
              thePrintView.pageNumber++;
                                  
              while(true)
              {
                   thePrintView.myDataGrid.nextPage();
                                       
                   thePrintView.showPage("last");  
                                       
                   if(!thePrintView.myDataGrid.validNextPage) 
                   {
                        printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
                        break;
                   }
                   else
                   {
                        thePrintView.showPage("middle");
                        printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
                        thePrintView.pageNumber++;
                   }
              }
         }
         removeElement(thePrintView);
    }          
    printJob.printAsBitmap = false;                    
    printJob.send();
    

    Here is the result when I print the report:

    printout.jpg

    I hope you have some time to help me.

    Thankz a lot.

    Can you check and see if the fact no difference if variableRowHeight attribute set to false?

    It looks like a problem of container.

  • The pop-up box to define privacy choices is too small. Only half of the text is available. Unable to access the "EDIT" button to the right to save the settings.

    I can't change any settings that are shown in a popup box. The box is too small to contain the message and cannot be adjusted. I can make changes, but cannot save them. As a result, I am stuck with either save no history, or the history. My problem is to save the cookies but the problem is extensive. I am running Firefox 41.0 2 under Ubuntu LTS 14.04. This problem did not until the 41.x update. At that time, my settings in Firefox are YOU, and I had to reload all the preferences, (several times). Thunderbird doesn't seem to be affected.

    The text seems important enough in the screenshot.

    You have a size of upper text somewhere (Firefox or Linux settings)?

  • Print module, LR4, Custom package (2) 8 x 12 on Super B paper, PRINTING ONLY HALF OF THE SECOND PHOTO

    What is the problem here? With the help of Epson 1430.

    _M2A2884.jpg

    It looks like a bad printer cable.

  • HP Deskjet 1000 printer - just changed the black cartridge for the first time and now it will only print first half of the page. Can anyone help

    HP Deskjet 1000 printer - just changed the black cartridge for the first time and now it will only print first half of the page.  Can anyone help

    Hello Gloria,.

    I ask you to execute methods in the following link and check if the problem is resolved.

    Solve printer problems

    You can also contact the manufacturer to find out how to clean the print head.

    http://h10025.www1.HP.com/ewfrf/wc/siteHome?cc=us&LC=en

    Please get back to us with the State of the question.

  • HP Officejet Pro 8620 copier copies only half of the document

    During the adjustment of the glass my copier copies only half of the page. When cope since the charger it leaves one side of my page off the coast. I've only had it a few weeks and do not know what to do. Thanks in advance for any help I can get.

    Hello @mburrand welcome to the Forums of HP, I hope you enjoy your experience!

    I see that you are having problems to copy output.  I'd love to try to help you, but I need some information first. I'm a link a few HP Support documents below that will show you how to find what operating system you are using. In addition, if you are using Windows, please indicate if your operating system is 32-bit or 64-bit.

    Mac OS X: how to find which Mac OS X Version is on my computer?
    Operating system Windows am I running?
    Is the Version of Windows on my computer 32-bit or 64-bit?

    In the meantime, I recommend that you perform a power reset.  Unplug the power cord from the printer and the power outlet, then wait 60 seconds. After 60 seconds, plug back in the printer. Make sure that you connect the printer directly to a wall outlet. Make sure to bypass any surge protector or power bar.

    Good luck and please let me know the results of your troubleshooting operations. Thanks for posting on the HP Forums!

  • Only half of the icons showing on personal bar

    Only half of the icons showing on the bookmarks toolbar, but when I go in the toolbar custom, then click on 'Done' they appeared all over again.

    Thank you... I downloaded the latest edition, and that seems to have solved the problem.

  • Windows that display only half of the disk capacity

    I have a new laptop HP EliteBook with Windows 7 SP1 is installed. SSD has 500 GB, but the system is only half of the disk capacity show.

    What can we do?  Thank you.

    CHKDSK discovered...  0 KB in bad sectors. 719099 KB in use by the system. 65536 KB occupied by the log file. 89854676 KB available on disk. 4 096 bytes in each allocation units total 60636159 the disk allocation unit. 22463669 allocation units available on disk.

    Coincidentally reduce then extend the volume again?

    CHKDSK is essentially a tool of file system and the capacity of the disc that you see in the Explorer disc property is actually the size of the file system rather than the physical size of the volume, the physical size of the volume is based on the head of sector, while the size of the file system is based on the number of clusters (allocation units).  The file system has a total of clusters 60636159 x 4096 bytes = 248,365,707,264 bytes.

    Different size according to the different tools are both correct, but the file system is not using the entire partition, you need to extend the file system with the Diskpart tool.

    At a command prompt, enter the following commands:

    C:\ > DISKPART
    DISKPART > list Volume
    DISKPART > select volume c (here, you can use the figures given by the Volume of the order list or use the actual letter of the volume, in your case 'c')

    DISKPART > extend filesystem
    DISKPART > exit (exit Diskpart)

    Here is a screenshot of the procedure:

    The file system extension is relatively safe, but as always you should ensure that you have a good backup of your files before doing any kind of work of system disk/partition or file.

    John

  • Firefox 27.0.1 w/Mac OS 10.9.2 prints only half left of the Web page (any page).

    I used to be able to print correctly. Computer did some updates yesterday and now I have problems printing. Only the left part of the page prints.
    -J' checked the settings
    -J' I reset the print_ in all: config
    -J' changed the default font
    -Margins are normal

    If Firefox does not use the entire page, it usually indicates a problem with getting the correct paper of the system size.

    When you reset the print settings in topic: config, reset it those related to the size of the paper?

    I do not know how you check the paper size to the printer by default on Mac, but that would be worth a glance.

  • print only part of the screen

    On portable MYMAC OSX 10.9.5 I struggled with printing only a part of what on screen, what Miss me.

    Try the command - shift - 4.

    Screenshots

  • HP Envy H8-1549: computer doesn't recognize only half of the new Ram

    Hi all.

    I took a set of ram Ripjaws X 32 gig (4 x 8).  When I install all four chips, only half of them are recognized by the Bios. If I remove two, both of which have not been recognized are visible and working in the same locations they were. It all works, but not all.

    Current configuration: http://support.hp.com/us-en/document/c03666767

    RAM: http://www.newegg.com/Product/Product.aspx?Item=N82E16820231569

    Everything I read on my motherboard and ram has indicated that it is compatible. I updated the Bios and erased the CMS.  I'm a bit of a loss. Am I missing something fundamental?

    What is a tension problem? If so, how can I send it?

    RAM is usually such an easy upgrade. Not so much this time, it seems to me.

    Thank you.

    This seller has guaranteed 8 GB modules for the H8-1549 envy.  The specs are "CL11.

  • No printer in the print, only icon in the "Add printer" Wizard dialog box

    Windows XP Professional - Version 2002 - Service Pack 3

    What would cause the print dialog box does not show printer, only the icon of the Add Printer Wizard?

    This occurs in only one (Eclipse) application on the PC.

    There are 20 printers in printers and faxes.

    I can not completely through the Add Printer Wizard and it will be case add a printer and/or set as default, if specified printer.

    However, the print dialog box displays always no printer.

    7 developers here, 2 have Windows XP, with the rest on Windows 7.

    Only two XP machines have this problem with this particular application.

    Windows 7 machines have the same version of the same application, but the print dialog box normally works for them.

    If I understand you correctly, everything works fine except the print in a particular application dialog box.  If this is the case, then maybe you should ask the promoters of this request for help/comment.

    Otherwise, given that the problem seems to be in the interaction between a particular application and a few Windows print API (probably the Print spooler API), you will be much more likely to find competent people to MSDN or TechNet.  Unfortunately, given that XP is on its way, it has only a single forum TechNet for XP but there is a Vista printing forum who may be of assistance.

    The Windows printing team blog seems to have been inactive for a while.

  • PSC 2175 Print gray boxes behind the text

    Recently this HP PSC 2175 printer has been printing gray background behind all the text boxes.  It comes from occurring when printing from Windows, launching a test print to options for control panel of the printer, or clear text copy.  See the examples below.

    I have already been through a gambit of the typical diagnosis and determined that there must be something internal that is false because this behavior occurs even when the computer is not used.  This isn't a matter of dirty heads print or alignment.  The HPPSdr.exe did nothing, but check that the printer works.

    Any suggestion would be appreciated.  Thank you

    Windows Test page

    Internal Test page

    Hello LB.

    I sent a PM, let me know what happens.

  • Print only part of the Email

    I recently changed to Outlook of Live.com. I can now print only a part of an e-mail message because of the borders on each side. How can I get rid of them, or print the entire message?

    For the interface of Outlook:

    1. go to your Inbox
    2. Select the desired message you want to print
    3. in the top of the message itself, you can see options like New, Delete, Junk, response, etc..
    Please select the three dots (...) next to categories
    4. click on print
    5. a preview of the message is displayed and also printing options. (don't forget to click on "all pages" for multi page email.)
    Just click print.

    Dyami & Wanikiya
    The zig - zag team

Maybe you are looking for