How to print multiple emails on one page

How do I print multiple emails on a single page?

Thanks, but fumbling around I think I found a better solution.
All of the incoming e-mails have a see more from...." line in blue type at the bottom. When I click on the"See more from…"  line it opens up the entire chain of discussion which can then be printed on a single page. Exactly what I've been searching to do.

Similar Messages

  • How to print multiple copies on one page ?

    How to print multiple copies of one document on one page ?
    in coreldraw I used to make the document -for example a business card 5x9 - and when sending to print it automatically placed the number of cards that would fit in my A4 sheet.
    how do I make the same operation in Indesign.
    thanks

    Hi, Peter S.
    >I can see that as a shortcut to printing a page of different cards for multiple people, but to do a simple n-up of a single card it seems overly complex to me. What am I missing?
    * It's just an alternative to copy/paste and step/repeat.
    * For a one-time only use, perhaps it's a little more complex than necessary. But for any future needs, only the content of the data file needs to be changed, either by editing, or by pointing to a new data file. If different cards for multiple people becomes necessary, it's ready to go.
    Regards,
    Peter Gold
    KnowHow ProServices

  • How to print multiple photos on one page

    How do I print multiple photos onone page

    Create a new blank document the size of your paper and then copy the photos you want to print into it. They'll each come in on a new layer and you can move them wherever you want, rotating if wanted, to make best use of the paper.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • How to print multiple footers for each page in RTF template xml report.

    Hi,
    How to print multiple footers for each page in RTF template xml report.
    i am able to print ( two sets ) ...
    up to last page ( one template ) and for last page ( another template).
    i want to change the footer information based on the group value printed in the report ( it might be 5 to 6) In every report run.. can you please check and let me know do we have any feasibility to achieve this.
    Thanks in advance.
    Regards,
    KAP.

    You can remove all other logic, like last page only contents (start@last-page:body), etc and section breaks if any you have inserted manually.
    Just have for-each@section logic.
    It would be difficult for me to guess what you have done without looking at your RTF or describing here.

  • How to print all columns in one page

    Hi,
    Can anybody explain me how to print all columns in one page.we have around 15 to 20 columns for 4 reports and all these reports are build on one multiprovider.we are using BW 3.5.
    Can anyone explain me  how to print ALL COLUMNS IN ONE PAGE  .currently they are getting all columns in 2 to 3 pages. They are using PORTAL to run the reports here.
    Is it possible to do by customizing Webtemplate or by macros in Workbook.Please help me
    Edited by: kotha123 on Oct 11, 2010 5:58 PM

    Hi,
    Your best bet is to use a workbook template or else Excel to pdf option...Thanks

  • Printing multiple photos onto one page

    Sorry, fairly new to PSE9!
    Have a group of photos I need to print to actual size (3cm x 4cm) to go into a photo frame.  They are all cropped and ready to go but there doesn't seem to be an option to print multiple images onto one page at a custom size?  A contact sheet only gives me the option for the number of columns and picture package doesn't give any such option either as far as I can see!  I'm sure I must be missing something here!
    Any help much appreciated!  Don't want to waste photo paper printing each small photo individually!

    http://www.elementsvillage.com/forums/showthread.php?p=206785#post206785
    Post #6 in this thread provides standard directions.

  • Print multiple photos on one page to printer

    I am new to macs, and I can't figure out (using iphoto 11) how to just print multiple photos on one piece of 8 1/2 X 11 paper in my own printer at home. I want to choose the size of each picture (like one 4X6 and two wallets on one page. How do I do this? it seems I can only print one pic per page when I use the print function in iphoto. Please help! If i can't do this basic thing I feel like I just wasted a couple thousand dollars on a really expensive piece of junk.

    This is a detailed set of instructions I made for my mother to use. Hope it helps.
    To print single or multiple photos in iPhoto
    Open iPhoto
    If photo(s) are not already in iPhoto then dragand drop into iPhoto
    Locate photo(s)
    Select (highlight) photo(s)
    Click File
    Click Print
    New window pops up
    Select border type on left side (standard, etc.)
    Select Print Size at bottom right (2x3, 3x5,etc.)
    Click Customize
    New window opens
    On bottom right are new icons
    IGNORE Print settings -are the options you chose in steps 7a, b & c
    IGNORE Themes - is thesame as step 7a
    IGNORE Background –ignore in most cases
    IGNORE Borders –default is 1 (use default in most cases)
    Layout (select 1 or 3 in most cases)
    1is horizontal photo
    IGNORE 2 is horizontal photo with text below
    3is vertical photo
    IGNORE 4 is vertical photo with text below
    SettingsClickon Photos per page
    If you want only 1 copy of each photo you selectedon each page then choose Single photo per page
    If you want 2, 3 or 4 different photos on eachpage then choose Multiple photos per page
    If you want many copies of the same photo oneach page then choose Multiple of the same photo per page
    ClickPrint on the bottom right
    Newwindow pops up
    If the arrow (triangle) to the right is pointingdown click it so it points up and displays additional options
    Choose number of copies (pages to print)
    ClickPrint

  • How to print two voucher in one page?

    HI,
    we want to print two voucher in one paper. what are the steps to be taken in sapscript? is it purely relted to SPAD?
    Regards,
    lijo Joseph

    hi joseph,
    i'm not sure how related this would be to your concern, but in my place, we've implemented that by sizing a voucher as half a page, so that when we print vouchers, the printer would know that one page is half of a regular page. SPAD is one place to fix, but the actual printing program and SAPScript was also customized so that it would send two vouchers for printing consecutively, and would fit in one page.
    ryan.

  • How to print 20 lines in one page and remaining lines in another in script?

    Hi I created 2 pages in script for page1 next page is page2 , how i can print 20 lines in one page and remaining in next page plz send me the code for that and is windows same for 2 pages?...

    Hi Krishna,
    Try below code...
        CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          form                              = form.
        CALL FUNCTION 'START_FORM'
        EXPORTING
         language               = sy-langu
         startpage              = page1
      LOOP AT itab.
        count = count + 1.
        item = count mod 20.
        IF item EQ '1' AND count NE '1'.
           CALL FUNCTION 'END_FORM'.
           CALL FUNCTION 'START_FORM'
           EXPORTING
             language               = sy-langu
             startpage              = <b>page2</b>
        ENDIF.
       "write_form statement ....
      ENDLOOP.
    Message was edited by:
            Hikaruno

  • I need an idea how to place multiple videos on one page

    Multiple videos on one page in Muse neded for a video portfolio..
    Anyone got a great idea how this can be done please. (or direct me to a tutorial link - doing one is all I can find)
    I am happy with either embedded or Menu linked on objects to videos.
    Youtube is hosting the videos
    I just cant find any way to put hyperlinks or urls in objects and I can not find a way to make small video players in Muse.
    If I scale the container ..things go very weird. eg the video goes tiny and into a corner.
    I feel like I am working with half a tool box!!!
    I cant even find a template where this has been done.
    Any help is appreciated. Thanx.

    That works perfectly thank you.
    Now I am wondering if I can have a single "viewer" that will play any selected video from a button , a menu or other trigger?
    Info for others if required. :  The You tube ID required in the widget setting is not the URL.  Its an alpha/numeric obtained from part of the YT embedding code.
    example - the bold underlined section
    <iframe width="720" height="405" src="//www.youtube.com/embed/w6ZcCOCihuY" frameborder="0" allowfullscreen></iframe>

  • I can not print multiple pictures on one page pse13 windows 8

    I have tried to print multiple pictures on one sheet and the program will not send it to the printer.  I went into picture package and got the 2 pics to show on one page and chose my printer, but when I hit print the screen goes back to the print page with only one pic on the page

    I don’t think it’s my printer I printed many multiple pictures with my old photoshop 5 with no prblems.  the only reason I bought photoshop 13 was because 5 would not work on my new computer with windows 8.
    Sent from Windows Mail

  • How to print multiple addresses on one sheet of avery labs using Pages?

    How do I print mulitple addresses on one sheet of avery labels?
    I used Numbers to make a database.
    I used Pages to use the Avery label template.
    I formatted the labels for the database but it shows my first sheet of labels as my first addressee and my second sheet as the second addressee.  I want multiple addresses on one sheet of labels!!

    What version of Photoshop do you have? Is it the full version or elements? What OS do you have and it's version?

  • Print multiple pictures on one page..so frustrating please help

    Just trying to print multiple pictures on a single piece of paper. The drop down menu that says "print multiple pictures on page" is grayed out and wont let me select it. I have read thread after thread , watched tutorial after tutorial and nothing addresses this simple command. What am I missing. Thank you in advance for your help

    Select the pictures and type Command+P to bring up the Print window. Then click on the Contact Sheet option at the left. You can change the number of photos per page and their size by clicking on the Customize button and the changing the number of columns on the page. The size of each photo will automatically be scaled to fit.
    If you want a specific size, then instead of selecting Contact Sheet select a print size. The size you select will determine how many photos of that size you'll get on the paper size selected.

  • How to Print 2 layouts in One Page

    Hi Experts!
    As a customer requirement, I defined an half page Invoice Layout but when I printing it, it gets the hole page to print it.
    What the customer needs is to print 2 invoices in only one page. It is possible to do that?
    Advice me please!!
    Thanks
    Claudia P. Gutiérrez

    Hi,
    I think it's more of a printer setting, but probably it's not possible to set a normal laser printer to do this but could be possible with a dot matrix printer.
    Anyway, you could try to change the printer settings and the page settings from SAP, for example changing the paper size and then changing how many pages to print on one page - this setting usually offers printing two pages on one paper next to each other only but not below each other, but it's worth to give a try.
    Regards,
    Nat

  • How to print two sides with one page?

    I have a PDF that is one page long and I'd like to print the same thing twice (front and back) on one page. Can I do that?
    I've tried printing two copies with the printer set to double-sided, but it just printed two sheets with one side on each sheet.

    Well sure; Go back to the authoring application that created the documents and do a 2-UP page. Make the existingg page large enough to accomodate the extra content. Is that what you're asking or do you really mean print to a printer with a back up ? In that case just flip the page over and print page 2 on the other side.
    Or are we missing something ?

Maybe you are looking for

  • Buttons not working in fullscreen mode

    Hi everyone,      I have a site where our Flash content can be sent to fullscreen by the user. When in fullscreen mode, in some computers the buttons within the content and the mouse stop working completely. It still exits from fullscreen by clicking

  • Syncing issues with 8330 outlook calendar

    Here goes my first post My wife and I have 8330's hers has an enterprise server mine does not.  The reason we got BB is to be able to sync our calendars together.  When attempting to sync my outlook (2003) calendar onto her phone it will not allow me

  • XI 2004s configuration

    Hello everybody, Does anyone have an idea of how long it takes to configure XI 04S? and what are the material requirements? I'm new in XI and i worked on the configuration of XI 3.0 but i haven't allready configured XI 2004s, so i wondered how long i

  • External warehouse management system

    Hello Professionals, When Transfer Order (TO) data is forwarded to an External Warehouse management system, does it mean the picking is done by the system and the update of picking result will be entered in to SAP automatically via some kind of inter

  • Spot the J++ applet/class or MS VM dependent code

    I wonder if an applet made by J++ that runs in Microsoft VM runs in the java plugin. Since MS diliberately changed some things in the core language code could have unexpected results when it's run with the Java Plugin. Our coumpany uses external reco