Contacts text not visible in Outlook

Hi
I am suffering from the same issue I have found posted all over the internet this morning - my Contacts list is unreadable as the text is barely visible, as if the card is too small for the space allowed.
I have:
Dumped my cache
Played with the zoom, and CTRL-- does bring all the text into view, but by that time it is too small to read.
Checked the tools/options/content section - fonts minimum size set to 'none', web sites set their own sizes.
All my browsers/add ons etc are up to date
It looks fine in IE but I don't use IE
What else is there?

Thanks, Cor-el, I'll get my head around the add-ons, but Zoom ++ eventually brought it into view. Now to keep it there for that one page :)

Similar Messages

  • [E2013][EWS-XML][EWSTOOL] Calendar item body not visible in outlook

    Hi, after upgrading to Exchange 2013 SP1 we experience the issue that appointments created using EWS by our ERP application don't show the body in Outlook 2010/2013. The appointment body is only visible in OWA or on Active Sync devices. Outlook just shows
    an empty body text. When openening the appointment in OWA and editting the body text, by placing a '.' at the end for example, then the body text is visible in outlook again. This worked fine in CU3 and earlier.
    I created a repro scenario using the EWSEditor tool:
    https://ewseditor.codeplex.com/
    Create an appointment using EWS. Below the request I've sent to Exchange EWS. It creates an appointment on Saturday, March 8th from 22:00 to 23:00 with the following text in the body: ‘Plan the agenda for next week's meeting.’. The request is successful and
    the appointment is being created. However, the body text is only visible in Outlook Web App, not in Outlook. 
    I reproduced this issue in our lab also, so it’s not specific to our production Exchange server, but seems to be a general SP1 issue.
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
      <soap:Body>
        <CreateItem xmlns="http://schemas.microsoft.com/exchange/services/2006/messages"
                    xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
                    SendMeetingInvitations="SendToAllAndSaveCopy" >
          <SavedItemFolderId>
            <t:DistinguishedFolderId Id="calendar"/>
          </SavedItemFolderId>
          <Items>
            <t:CalendarItem xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
              <Subject>Planning Meeting</Subject>
              <Body BodyType="Text">Plan the agenda for next week's meeting.</Body>
              <ReminderIsSet>true</ReminderIsSet>
              <ReminderMinutesBeforeStart>15</ReminderMinutesBeforeStart>
              <Start>2014-03-08T22:00:00</Start>
              <End>2014-03-08T23:00:00</End>
              <IsAllDayEvent>false</IsAllDayEvent>
              <LegacyFreeBusyStatus>Busy</LegacyFreeBusyStatus>
              <Location>Conference Room 721</Location>
            </t:CalendarItem>
          </Items>
        </CreateItem>
      </soap:Body>
    </soap:Envelope>
    Frank.

    I got our developers change the body type to HTML. Still it doesn't work.
    Our code is java
    -238,21
    +238,21 @@ public class WebServiceExchInteractor extends ExchangeInteractor
                    logger.debug("Sending new meeting request using exchange web services. Meeting Item = " + item.toString());
                    boolean errorOccurred = false;
                    try
                    CalendarItemType calendarItemObj = CalendarItemType.Factory.newInstance();
                        //Setting subject and body of the meeting
                    calendarItemObj.setSubject(item.getSubject());
                        BodyType bodyObj = BodyType.Factory.newInstance();
    +                   bodyObj.setBodyType(BodyTypeType.HTML);
                        bodyObj.setStringValue(item.getBody());
                        calendarItemObj.setBody(bodyObj);
                        //setting the attendees
                        calendarItemObj.setRequiredAttendees(constructArrayOfAttendeesType(item.getAttendees()));
                        //Setting the Meeting time and reminder properties
                        calendarItemObj.setReminderIsSet(item.isReminder());
                        calendarItemObj.setReminderMinutesBeforeStart(ExchangeConstants.DEFAULT_FREE_BUSY_INTERVAL);
    -439,21
    +439,21 @@ public class WebServiceExchInteractor extends ExchangeInteractor
                            itemFieldChangesArray[3] = SetItemFieldType.Factory.newInstance();
                            itemFieldChangesArray[3].setItem(calendarItemObj);
                            PathToUnindexedFieldType pathToSubjectObj = PathToUnindexedFieldType.Factory.newInstance();
                            pathToSubjectObj.setFieldURI(UnindexedFieldURIType.ITEM_SUBJECT);
                            itemFieldChangesArray[3].setPath(pathToSubjectObj);                     
                            //Setting the path to body
                            calendarItemObj = CalendarItemType.Factory.newInstance();
                            BodyType bodyObj = BodyType.Factory.newInstance();
    +                       bodyObj.setBodyType(BodyTypeType.HTML);
                            bodyObj.setStringValue(item.getBody());
                            calendarItemObj.setBody(bodyObj);
                            itemFieldChangesArray[4] = SetItemFieldType.Factory.newInstance();
                            itemFieldChangesArray[4].setCalendarItem(calendarItemObj);
                            PathToUnindexedFieldType pathToBodyObj = PathToUnindexedFieldType.Factory.newInstance();
                            pathToBodyObj.setFieldURI(UnindexedFieldURIType.ITEM_BODY);
                            itemFieldChangesArray[4].setPath(pathToBodyObj);
                            //Setting the path to attendees
    -642,21
    +642,21 @@ public class WebServiceExchInteractor extends ExchangeInteractor
             ItemIdType[] itemIdDetails = new ItemIdType[1];
             itemIdDetails[0] = ItemIdType.Factory.newInstance(); 
             itemIdDetails[0].setId(itemId);
             NonEmptyArrayOfBaseItemIdsType itemIdObj = NonEmptyArrayOfBaseItemIdsType.Factory.newInstance();
             itemIdObj.setItemIdArray(itemIdDetails);
             getCalendaritem.setItemIds(itemIdObj);
             //Setting the response properties required from server
             ItemResponseShapeType responseDetails = ItemResponseShapeType.Factory.newInstance();
    +        responseDetails.setBodyType(BodyTypeResponseType.HTML);
             responseDetails.setBaseShape(DefaultShapeNamesType.ALL_PROPERTIES);
             PathToUnindexedFieldType uidView = PathToUnindexedFieldType.Factory.newInstance();
             uidView.setFieldURI(UnindexedFieldURIType.CALENDAR_UID);
             BasePathToElementType[] pathArray = new BasePathToElementType[1];
             pathArray[0] = uidView;
             NonEmptyArrayOfPathsToElementType additionalProperties = NonEmptyArrayOfPathsToElementType.Factory.newInstance();
             additionalProperties.setPathArray(pathArray);
             responseDetails.setAdditionalProperties(additionalProperties);
             getCalendaritem.setItemShape(responseDetails);
    -710,21
    +710,21 @@ public class WebServiceExchInteractor extends ExchangeInteractor
                itemIdDetails[0] = ItemIdType.Factory.newInstance(); 
                itemIdDetails[0].setId(itemId);
                itemIdDetails[0].setChangeKey(changeKey);
                NonEmptyArrayOfBaseItemIdsType itemIdObj = NonEmptyArrayOfBaseItemIdsType.Factory.newInstance();
                itemIdObj.setItemIdArray(itemIdDetails);
                getCalendaritem.setItemIds(itemIdObj);
                //Setting the response properties required from server
                ItemResponseShapeType responseDetails = ItemResponseShapeType.Factory.newInstance();
    +           responseDetails.setBodyType(BodyTypeResponseType.HTML);
                responseDetails.setBaseShape(DefaultShapeNamesType.ALL_PROPERTIES);
             PathToUnindexedFieldType uidView = PathToUnindexedFieldType.Factory.newInstance();
             uidView.setFieldURI(UnindexedFieldURIType.CALENDAR_UID);
             BasePathToElementType[] pathArray = new BasePathToElementType[1];
             pathArray[0] = uidView;
             NonEmptyArrayOfPathsToElementType additionalProperties = NonEmptyArrayOfPathsToElementType.Factory.newInstance();
             additionalProperties.setPathArray(pathArray);
             responseDetails.setAdditionalProperties(additionalProperties);
                getCalendaritem.setItemShape(responseDetails);
    SONY ABRAHAM

  • AD RMS 2012 Templates/Permissions [Option] is not visible at Outlook 2013 in Nokia Windows 8 Mobile Device

    I have AD RMS 2012 Server, its working fine by applying restricted Templates/Permissions on OWA, Outlook & other MS Office Tools (Word Excel, PowerPoint). But the AD RMS Templates/Permissions [Option] is not visible at Outlook 2013 in Nokia Windows
    8 Mobile Device.
    Actually I would like to protect email with RMS templates (defined by me on AD RMS 2012 Server) but the [Permission] tab is not visible at Outlook 2013 in Nokia Windows 8 Mobile Device.
    But I can do same with Android OS in Samsung Galaxy Mobile Device & I can see [Permission] tab as well to protect an email messages.
    Any idea??
    Regards,
    M.Daud Soomro

    Currently, you can't use WP 8 to protect docs/emails with ADRMS templates. YOu can however use transport rules on Exchange server side to configure automatic ADRMS protection.
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Damir

  • Contacts are not syncing with Outlook

    ICloud Contacts are not syncing with Outlook.  Any suggestions?  Thx.

    aeam wrote:
    Thanks, that sounds fun
    I sympathize

  • Many contacts are not visible to alphabetical browse on Contacts after update to OS 10.2 on the Z10

    After updating to 10.2 on Z10  many contacts do not appear on the Contacts list, but if I search for them, I get them one at a time. I can't browse for them, but they are still in a file somewhere. That file is no longer fully connected to the Contacts app, it seems. I'm going to call the two alternatives the "browsible" list when I refer to the Contact app working correctly and lsiting the contact alphabetically; and the "non-browsible" list, when I can only find them by a search.
    One other thing of interest. When I add a contact that is in the same name as one on the non-browsible, I will get a message asking me if I want to replace the [old] contact. If I say yes, the new contact listing joins the hidden list and replaces what was there. If I say no, I get the contact added to the browsible Contact app. Thereafter, if I search on that name I get two hits: one is the old, non-browsible entry and the other is the new one that is browsible.
    I did the 10.2 update when I was running the older BB link on a WinXP computer and it did not work to create a back-up, so I can't try restore. I now run Win7 64-bit and the new link seems to work okay,  but that was installed after I upgraded to 10.2..
    Any suggestions as to where I go to find the hidden contact entries on the non-browsible list? And how I get them to appear on the alphabetical, browsible, list when Contacts is opened?
    Thanks for all answers.
    Ken 

    That's another odd thing. I did make a big effort to back-up the Z10 before the update to OS 10.2.1.  But, it appears to me that by downloading the new OS to my computer [T-Mobile never does push the BB updates, not as long as I've owned it, which was a few days before the US distro, when I got hold of one for the South American market in Miami Breach] it seems to have removed my installed BB Link from my laptop. And my back-up files are empty.  
    Last time something like this happened. there was a workaround. Do this, do that, and suddently the contacts that are lurking somewhere on the phone, appear. I was hoping for this again.
    If this is a known issue, why is it not featured on the BB page where the installer was located? I would never have downloaded OS 10.2.1, if I was warned I might lose my contacts and texts. 
    A sorry mess.
    Ken
    PS Note I corrected "visible" to "invisible" in the title of  this thread

  • Vendor text not visible in SAP R/3

    Hello All,
    When a purchase order is created in SRM with additional text - ie. Vendor text. ( Either at item or header level) This text is not visible when viewing the purchase order in SAP R/3.Does it not come default ??? i am expecting the text to be reflected In the text tab in the item detail section.
    Does it require any BADI or config for the same to reflect in R/3
    Regards
    ~Rupesh

    Hi
    You can transfer the long text to the backend through the R/3 backend <b>bbp_po_inbound_badi</b>. Your code must be placed in the <b>BBP_MAP_BEFORE_BAPI</b> method.
    <u>Use any of the SRM BADIs :</u>
    1) BBP_ECS_PO_OUT_BADI
    2) BBP_CREATE_BE_PO_NEW
    3) BBP_CREATE_PO_BACK
    4) BBP_LONGTEXT_BADI
    <b>Please go through the links below -></b>
    Re: Extended Classic Scenerio and Vendor Text
    Re: MM - SUS: transfer text of the purchase order from R/3 to SRM
    Do let me know.
    Regards
    - Atul

  • Why is my text not visible in text boxes?

    I have a set of text boxes that I have used throughout my book as little sidebars providing tips to the reader. These text boxes lay out beautifully within iBook Author. When I preview on my iPad, the text within these boxes becomes invisible. The text is still there — if I double tap on the iPad to use the search function, the text can be selected and shows up in the search box, but is still invisible.
    I am hoping this is some kind of user error on my part that can be easilly corrected. It appears to affect all two dozen tips I have inserted into the doccument. However, when I create a new text box it seems to function fine, even when following all the same steps to lay it out. You will see this in the green box in I stuck in example for the purposes of obtaining your help. (Please help! )
    All the affected text boxes were cut and pasted from the original, so perhaps I set something wrong? It's odd that the preview does not match the iPad layout.
    Here are some screenshots to make it more clear. First, the layout in iBooks Author:
    Then a screenshot from the iPad after it has been previewed:
    It may also be noteworthy that as the preview loads into the iPad, the text is visible, then vanishes as soon as the upload is complete. The small page previews on the ipad when 'zoomed out' to the overview also show the text, though when you go to the page it is still blank. Here is what the small page view looks like:

    Did you confirm the text/box is 'to the front'...on the top of everything in that same location? Should work if so.
    Yes.
    Are they any other elements that are maybe hiding there?
    No.
    Did you try another font color or font?
    Yes. Font, style and color (black, white, grey, green purple) do not appear to have any effect.
    Are the boxes anchored graphics...
    No, they are free floating but the problem persists if I anchor them.
    and is the text in a box on top of the graphic?
    No, the text is integrated. The box was made by creating a text box.
    Even with different answers, this problem should not occur — if the text were hidden behind something, it should show that way within the program and the small preview, no?

  • DW8 text not visible in design view

    I have imported a site from DWMX(6?) to DW8.
    In DWMX everything is visible in design view.
    In DW8 the text is NOT visible in design view unless I switch off rendering using CSS (Display Styles Off), but displays fine in a browser.
    If I switch off rendering using CSS I can see and edit the text but it is not remotely WYSIWYG
    The pages are created from templates and were originally created using DW4 or DW3.
    The site URL is http://www.decisionmodels.com/
    There has to be a simple solution to this but I just cant find it.
    Charles

    font verdana { font-family: Verdana, Geneva, sans-serif; }
    I changed the font from default because one of the old fixes I found for Dreamweaver suggested that...  I could change it back.
    You are aware that this is not a legitimate CSS selector, right?
    Forgive my ignorance, but what does this mean?  Does it refer to my font selection?  Or something else?
    It means that your selector "font verdana" is not a legal selector.  It says to find all "verdana" tags that are descendents of a font tag.  Clearly there is no valid HTML tag called "verdana".  If it was your intention to create a rule that would allow you to format text as verdana, or geneva or sans-serif, then that would have to be done with a CLASS selector, e.g.,
    .font_verdana { font-family: verdana, geneva, sans-serif; }
    Note the leading 'dot' and the underscore - spaces are not allowed in selector names.

  • Message content not visible in Outlook&OWa but visible in smartphone

    Hello,
    We experienced very strange issue last time.
    One user received properly message on the smartphone and also in Outlook 2007 client, but the thing is that message content (internal text) is visible only on phone and there is blank message in Outlook. Message was sent to user from external sender.
    I've tried to view this message in Owa but with the same result.
    Also i've recreated Outlook windows& outlook profile but without success.
    At the end i've opened this message via MFC MAPI tool and checked attribute "PR_BODY,PR_BODY_A,ptagBODY" where usually there is some internal text message but there is also empty space.
    Can you please give me advice where to look further ?
    Thank you in advance

    Hi MacKrk,
    Sorry for the late reply.
    Found an article for your reference:
    Change the message format to HTML, Rich Text Format, or plain text
    http://office.microsoft.com/en-001/outlook-help/change-the-message-format-to-html-rich-text-format-or-plain-text-HA102749169.aspx
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • After creation producton order long text not visible inCO03

    Hi
    while creating production order with co01 i entered long text in longtext tab of the production order
    after that  in display mode  co03  that long text is not visilbe. tell me why and what are the setting required.
    thanks
    RAVI

    when i am creating production order
    i enter materil, plant, order type
    after that  in producto header screen
    i enter total quantiy 1 and scheduling type current date  in genaral tab
    after that i go to  long text tab i enterd long text and  i saved the order
    then i check in co03  the long text in entered  not visible.
    i am  in single tc code that time co01
    thanks
    ravi

  • Security text not visible

    Trying to place classified ad on craigslist and at the "confirm ad" page it asks you to "type each of the following words into the box" and continue. These security text are not visible....no box, text...nothing. Seems as though it happens only on the craigslist site.

    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    * You can see the permissions for the domain in the current tab in Tools > Page Info > Permissions
    * You can see all exceptions in Tools > Options > Content: Load Images > Exceptions
    * You can check the Tools > Page Info > Media tab for blocked images (scroll through all the images)
    There are also extensions (Tools > Add-ons > Extensions) that can block images.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    * [[Troubleshooting extensions and themes]]
    Other things that need your attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Shockwave Flash 10.0 r45
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://kb.mozillazine.org/Flash
    *http://www.adobe.com/software/flash/about/

  • Digital graph cursor text not visible after build

    We are using Labview 2011. Our application has been using digital graphs, with cursor text to define digital transition information since Labview 7.1. We have ported our application to Labview 2011 (and also 8.6.1 in which it works fine). While in the Labview development environment, the cursor text displays correctly. However when we build it, and run the .exe, we cannot see the cursor text. Our debugging efforts have been in vain - the xy locations are correct, but the cursor text is not visible.
    We want to standardize our next version software on 2011 (even though the Labview 2011 version is 4x larger and 2.2 x slower than the Labview 7.1 version) because we need x64 support, and want to run in Linux as well. We have spent considerable time trying to find out what is wrong, but the debugging time is very long to go through the thought - build - run cycle.
    Any help on why this might be would be gratefully appreciated.
    - Bart Schroder, Cleverscope

    Bart,
    Can you please post a screenshot of your code as well as what's happening when you run your code?
    Thanks,
    Renee M
    Applications Engineer
    National Instruments
    Regards,
    Renée M
    Applications Engineer
    National Instruments

  • TS4147 contact address not visible although data is present when searched for

    I'm trying to view address information on an existing contact record but it is not showing,  When searched for, it returns the relevant record but the data is still not visible.   All contact info has been reduced to just phone no, email and notes.Help!

    Hi Vetsrini,
    Many thanks for offering to help. It has just been solved. It was a typo in the XML of the name of the column.
    Doh! Obvious now that I know!
    - Jenny

  • Contact Groups Not Showing In Outlook

    As of yesterday morning contact groups disappeared from my Outlook 2010 contacts. Logging into iCloud.com The groups are all there with the right people in them. Is this resulting from an update to iCloud, or is something corrupted in my system?
    Thanks!
    ~Mike

    Hi,
    I would like to create two folders - one for me and one for my wife. So under 'My Contacts' in Outlook 2010 it looks like this:
    Suggested contacts
    Contacts
    Suggested contacts (email address)
    Simon's contacts
    Julie's contacts
    iTunes has picked up these sub-folders - THANKS!
    However, I would like to keep the 'Contacts' folder with all the contacts in and only copy selected contacts from there and place them into my wife's folder and mine. The 'copy' function does not seem to work.
    Obviously my contacts are different to my wife's and she does not want hundreds of names on her contact list.
    So, basically how do I copy contacts without moving them out of the contacts folder and manually typing them all back in my wife's folder (some contacts we both need)?
    Hope you can help on this one.
    Many thanks,
    Simon

  • Calendar and contacts is not syncing with outlook 2011

    Hi,
    Hope someone can help. My contacts/calendar/notes in icloud and not syncing or showing on "My Mac"
    In outlook preferences I checked tht sync services select "My computer /calendar"
    15" Retina Macbook Pro
    Running OS X version 10.8.2
    Please assist.
    Thank you,

    really? no one out there has an answer? Come on guys a little help please.
    Thank you.

Maybe you are looking for

  • LR 3 freeze when trying to import (with a workaround)

    Hi, Windows XP SP3 Core i7 with 4 GB RAM (3 in use) I had mentioned this in the previous IMPORT FREEZE thread, but that thread go pretty long and convoluted so I thought I would isolate the particular problem that I (and many others) are having. Prob

  • Problem logging on to the managed RAS using JBoss Seam

    <p>The app I am currently working on is using JBoss Seam.  The sample jsp files you guys created were excellent.  As a simple test I first tried to logon and export a report thru a different app using JSP and Tomcat and had no problems.   I then copi

  • Please help....  Cannot format my hard drive, new mac user!

    Hello! Whenever I try to recover my Mac it gets to the Apple logo then freezes, is there a way I can wipe the hard drive then do a hard install from my CD set? This is driving me crazy so please help me!!

  • Dendrogram built-in JAVA function?  Open-source?

    Hello, I have been searching the internet for a way to use dendrograms with data that I have generated. A dendrogram looks like this: http://www-csli.stanford.edu/~schuetze/dendrogram.html And supposidly there is a class in JAVA to do dendrograms. I

  • Run Time Errors, Please Help.

    I am getting errors of: Exception in thread "main" java.lang.NumberFormatException: feet at java.lang.FloatingDecimal.readJavaFormatString(Unknown Source) at java.lang.Double.parseDouble(Unknown Source) at SquareDriver.main(SquareDriver.java:29) her