Print out all contacts with all info showing in Outlook 2013

In Outlook 2013, if you click the Contacts group you want to print, then go to File...Print, the only option is to essentially print the view you have when clicking into the People menu.
How can I print out every contact showing all the info in each contact?

Hi,
Do you want to print each contact into each printout page with all the info? If so, you can try printing using the
Memo Style. To do this, click the contact group you want to print, select one contact and then press Ctrl + A to select all contacts in the contact group. Then, click File > Print. Under
Settings in the Print tab, select Memo Style. Click
Print.
For more information about print contacts in Outlook 2013, please refer:
http://office.microsoft.com/en-us/outlook-help/print-your-contacts-HA102749446.aspx
Regards,
Steve Fan
Forum Support
Come back and mark the replies as answers if they help and unmark them if they provide no help.
If you have any feedback on our support, please click
here

Similar Messages

  • Print out a page with a all controls

    Hello
    Is it possible to print out all the controls on a page.
    I meam all together with one function?
    Thanks
    Phil1

    I assume you're asking how do you print an MFC dialog with all of its controls. Is that correct? If so, try adding a method to your dialog class with this code:
    CPrintDialog printDlg(FALSE);
    if (printDlg.DoModal() != IDOK)
    return;
    DOCINFO documentInfo;
    ::ZeroMemory(&documentInfo, sizeof(documentInfo));
    documentInfo.cbSize = sizeof(documentInfo);
    documentInfo.lpszDocName = _T("Dialog Document");
    HDC hdcPrinter = printDlg.GetPrinterDC();
    CDC printerDC;
    printerDC.Attach(hdcPrinter);
    printerDC.StartDoc(&documentInfo);
    printerDC.StartPage();
    HDC hdcScreen = ::GetDC(NULL);
    CDC screenDC;
    screenDC.Attach(hdcScreen);
    long screenPpiX = ::GetDeviceCaps(hdcScreen, LOGPIXELSX)
    long screenPpiY = ::GetDeviceCaps(hdcScreen, LOGPIXELSY);
    long printerPpiX = ::GetDeviceCaps(hdcPrinter, LOGPIXELSX);
    long printerPpiY = ::GetDeviceCaps(hdcPrinter, LOGPIXELSY);
    long xRatio = printerPpiX / screenPpiX;
    long yRatio = printerPpiY / screenPpiY;
    CRect windowRect;
    GetWindowRect(&windowRect);
    CRect targetRect = windowRect;
    targetRect.right = targetRect.left + (targetRect.Width() * xRatio);
    targetRect.bottom = targetRect.top + (targetRect.Height() * yRatio);
    targetRect.OffsetRect(
    -targetRect.left + (targetRect.left * xRatio),
    -targetRect.top + (targetRect.top * yRatio)
    CDC* dialogDC = GetDC();
    printerDC.StretchBlt(
    0,
    0,
    targetRect.Width(),
    targetRect.Height(),
    dialogDC,
    0,
    0,
    windowRect.Width(),
    windowRect.Height(),
    SRCCOPY
    ReleaseDC(dialogDC);
    screenDC.Detach();
    p
    rinterDC.EndPage();
    printerDC.EndDoc();
    printerDC.Detach();
    This isn't perfect, but hopefully it can get you started.
    - Elton

  • Print out all methods in program with print statements

    Does anyone know how I would be able to print out all the methods in a program. For example:
    class bd220p1 {
         public static void main(String args[])  {
              int lightspeedi,lightspeedm;
              long days;
              long seconds;
              long distancei;
              long distancem;
              // approximate speed of light in miles per second
              lightspeedi = 186000;
                // approximate speed of light in Kilometers per second
              lightspeedm = 300000;
              days = 1000; // specify number of days here
              seconds = days * 24 * 60 * 60; // convert to seconds
              distancem = lightspeedm * seconds; // compute distance in English system
              distancei = lightspeedi * seconds;// compute distance in Metric system
              System.out.print("In " + days);
              System.out.print(" days light will travel about ");
              System.out.println(distancei + " miles and");
              System.out.print(distancem + " Kilometers ");
    }This code would produce 5 print statements for the 4 methods:
    1 Main method
    2 Print method
    3 Print method
    4 Println method
    5 Print method
    Does anyone know I can write the could to accomplish this? Right now I am experimenting with try/catch statements. Any help is greatly appreciated.

    It seems to me the easiest approaches (other than using a tool someone else has already written) are:
    1) Compile the source, and then use BCEL
    2) Try some regular expressions; it won't be perfect but maybe you can tweak it until it's good enough.
    3) Parse the source, and examine the parse tree.
    1 and 3 will give you much better results, but require you to use outside libraries (or write a parser yourself).
    You can do 2 using standard stuff from the JDK, but you may spend a lot of trial-and-error gettng the regexps right.
    Which you choose will depend a lot on what the prof giving the assignment allows.
    Also he may have some particular kind of solution in mind -- did he say anything?
    If you're not sure what to do, ask your prof for clarification.

  • How can I print out all notes?

    I have over 200 notes and I would like to print out a copy to keep as a reference. Is it possible to somehow print out all of the notes at once without having to open up each one individually and print them out.

    It's not a file, so you can't "open" one file. Every message (and note) is a single file on the computer.
    This Applescript will grab all the notes in the selected mailbox (i.e. the selected Notes item in Mail) and put them in a textEdit document.
    Note that Mail doesn't differentiate between a note and an email message, so if you run this while a normal email mailbox is selected, it will gather all of your email messages.
    tell application "Mail"
    set theMailboxes to the selected mailboxes of message viewer 0
    repeat with aMailbox in theMailboxes
    set theNotes to the messages of aMailbox
    set theText to ""
    repeat with aNote in theNotes
    set theText to theText & content of aNote & return
    end repeat
    end repeat
    end tell
    tell application "TextEdit"
    set myDocument to make new document at end of documents with properties {text:theText}
    end tell
    Copy and paste this into a new AppleScript Editor Document, select the Notes mailboxes you want to print the notes from, and click the Run button (Green button with arrow).
    This may take a while.

  • How can I print out all notes or export the entire file?

    I have around 300 notes that include a variety of information. I would like to print out a hard copy. I don't want to open and print out each one individually. Is there a way to print out all of them at once. Also, is there a way export the file so I can open it in another application like Excel or Word?

    It's not a file, so you can't "open" one file. Every message (and note) is a single file on the computer.
    This Applescript will grab all the notes in the selected mailbox (i.e. the selected Notes item in Mail) and put them in a textEdit document.
    Note that Mail doesn't differentiate between a note and an email message, so if you run this while a normal email mailbox is selected, it will gather all of your email messages.
    tell application "Mail"
    set theMailboxes to the selected mailboxes of message viewer 0
    repeat with aMailbox in theMailboxes
    set theNotes to the messages of aMailbox
    set theText to ""
    repeat with aNote in theNotes
    set theText to theText & content of aNote & return
    end repeat
    end repeat
    end tell
    tell application "TextEdit"
    set myDocument to make new document at end of documents with properties {text:theText}
    end tell
    Copy and paste this into a new AppleScript Editor Document, select the Notes mailboxes you want to print the notes from, and click the Run button (Green button with arrow).
    This may take a while.

  • Since switching to Yosemite, I am unable to paste any information into calendar events, instead having to type out all info such as location, notes, etc.  This is true both in daily view and weekly/monthly views as well.  Help?

    Since switching to Yosemite, I am unable to paste any information into calendar events, instead having to type out all info such as location, notes, etc.  This is true both in daily view and weekly/monthly views as well.  Help?

    You welcome

  • HELP! An update wiped out all info from my iPhone. Now Game Center doesn't recognize me! Why?

    HELP! An update wiped out all info from my iPhone. Now Game Center doesn't recognize me! Why?

    Restore the device from the backup created prior to the update.

  • Print out of RFQ with One Time Vendor

    My customer wants print out of RFQs with one time vendor.
    As per my understandings as like other vendors this one time vendor data is not stored in any table.This data is in table ADRC. And for one time vendor no master data is there.I can see this one time address in particular RFQ.
    Now, my customer wants this one time vendor address to be printed in all RFQs.
    Is any body come across this scenario ever ?Please guide my it is urgent.
    With Best Regards,
    Rajesh

    Hi,
    The vedor(OTV or Regular vendor) will be decided after the price comparision only.
    Once the OTV (account group:CPD/CPDL) is finalised as the final vendor for procurement create a new vendor master record (With A/c group:0001) and maintain Inforecord and source list and create PO.
    Maintain all the conditions in the Inforecord from the quotations (you have the update info option from price comparision itself)
    regards,
    Kannaiah Naidu

  • Can I print out the contacts in paper?

    Can I print out the contact from mobile in paper?

    stong2011 wrote:
    Thank for your info. Yes, I can't find this function in ovi suite. So I'd try to other program which can sync with these datas can print it out.
    ..As mentioned above, whats your phone model ? Is it compatible with the PC Suite ? If 'YES', then you do not need anything else...

  • I have a problem printing out my contact book.

    I have and iMac with Mountain Lion.  My pbroblem is printing out my contact book of 102 contacts.  The contact book is arranged alphabetically by last name, but when I print it, it is printed in a random order.  What is my problem and what shoulld I be doing to correct this problem?

    Please describe the problem.  No one can help you unless you tell us what the problem is.

  • Can I print out my contacts?

    Can I print out my contacts?

    There is a long tedious way to print your contacts from your iPhone if you like.  I'm assuming you do want to print directly from your iPhone, which means you either have an AirPrint capable printer online and communicating with your iPhone, or you have a printer communicating with your iPhone using some specific printing app (e.g., Epson iPrint).
    You could then open a contact, take a screen shot (by clicking the home and on/off buttons together), and then print that screen shot (from your camera roll, which is where it will be stored).
    That's a lot of trouble, but if you just have a handful of contacts and no computer from which to print the information, that would work.

  • How can I print out my contacts from my ipad

    HHow can I print out my contacts from my iPad or iPhone?

    Hi Ken, there is an app, Contact Sheet (http://itunes.com/apps/appiota/contactsheet) that will not only print your contacts, it can also print the pictures!  This app can be used to back up, share, or extract information from your contacts.  You can select which contacts to use by creating a group and you can choose which fields to include.  So, for example, if you were creating a phone list to distribute to your bowling group, you could just include names and phone numbers and not include address or other information that people may not want shared.  It can even be used to send group emails and group text messages.  Please check it out!

  • HT1296 To sync contacts with my computer, I choosed "Sync Contacts with" within iTunes for Windows Outlook and Its suncking but contact is not showing in the Oulook contact.

    To sync contacts with my computer, I choosed "Sync Contacts with" within iTunes for Windows Outlook and Its suncking but contact is not showing in the Oulook contact.

    Do changes/additions to the contacts list in Outlook appear on the iPhone?

  • How to print out a JPanel with its components

    Hello,
    I want to print out a JPanel where several components are placed in. The problem is just that neither the printAll() method nor the print() method works to do so. There's always just a print of the empty JPanel. Is there in general a possibility to print out a JPanel with its components or are I'm on the wrong way ?
    Thanx,
    Findus

    I just posted this link and it works here:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=361445&tstart=0&trange=15

  • Printing out of Photoshop with new Epson interface

    Does anyone have the proper workflow for printing out of Photoshop CS4 to an Epson 3800 with the new Epson printer preferences interface? I just upgraded to a new computer that is running Vista 64 and downloaded the Epson driver for that OS and now the print preferences window is totally changed. Most importantly I do not see any option for turning off printer color management so that Photoshop can manage color. 

    This post by Miguel may or may not be helpful:
    http://forums.adobe.com/message/2096662#2096662
    It is my understanding that when printing out of Photoshop, with "Proof" selected under Color Management, and "Photoshop Manages Colors" under Color Handling, Photoshop is performing 2 color conversions on output.
    The first is to the "Proof" profile (which for commercial print purposes describes the press condition), based on Color Settings. Then this in turn is converted to the RGB ink jet printer profile.
    With this final conversion, it changes depending on the Proof Setup options (paper color, black ink) in the Photoshop print dialog. If neither is checked, it is Relative Colorimetric, BPC enabled. If black ink is checked, Relative Colorimetric, BPC disabled. If paper color is checked, Absolute Colorimetric.
    Maybe these correlations are common knowledge but they were certainly news to me. What it means is, if you are having a lot of trouble with a print interface, you could do the necessary conversions manually and send uncalibrated RGB to the printer. Not an efficient workflow but will work if you're in bind.

Maybe you are looking for

  • Can I link two acrobat 9 forms together so that info typed into one is auto populated into the next?

    I have multiple forms that are being created. In some cases I require both forms submitted. Both forms have the same information in the top portion. Is it possible to link the form fields so that once populated it auto populates the corresponding fie

  • Panel replacement for W530

    Dear all, Some months ago, in this forum, I was requesting information about the compatibility of panels for the W530 wince my panel, AUO B156HTN01, is an underperforming panel. The contrast ratio I get is lower than 400:1 (average 330:1) and the col

  • Invalid object access execption

    JBO-25036 an invalid object operation was invoked on type View Object with name <viewname> can somebody tell me what is the root cause for the exception. Some time its working fine and sometimes its giving the error. frequency level is approx. once i

  • Processing Sequence of update rules

    Dear All, Before loading a new record in the update rules, I would like to do a select on a different table based on the information in the comm_structure-record.  1) For performance reasons I cannot put this select in the start routine, on the other

  • Installing windows games with multiple discs

    When I am trying to install a windows PC game with multiple discs, the install starts out ok, then it asks to insert disc #2. I'm using a Mac Mini, booted into Windows XP SP3. Since there is no manual disk eject button like on a PC machine, how can I