Print message preview in table style

Hi,
My inbox view is set with 3 lines of message preview. When trying to print emails in Table Style, I cant see the message preview.
Any thoughts?
Thanks a lot in advacnce
[Using Outlook 2013]

Hello,
I've tested it in my environment and I'm able to see the preview.
Please try to reset the Table Style to check if it helps. To do this, go to File > Print > Print Options > Define Styles button > Click on "Table Style" and click
Reset button.
Please let me know the result.
Best Regards,
Steve Fan
TechNet Community Support

Similar Messages

  • Unable to print table-style to-do list (Outlook 2013)

    I can print the to-do list in memo style, but I don't want a separate page for each task -- I want a list.  When I try to print the table-style list, nothing happens.

    Hi,
    Was there anything showing in the print preview pane when printing To-Do List using Table Style?
    Please select To-Do List and go to Print page (File > Print), click
    Print Options > Define Styles, highlight the
    Table Style and click Reset button. Then test it again.
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Printing from Preview produces error message "The file couldn't be opened".

    Hi,
    Ever since the upgrade to OS X 10.8, I get the error message "The file couldn't be opened" each time I want to print from Preview. I just have to click "OK" and then everything prints fine, but if anyone knows how to get rid of this message, it would be even better!
    I have run "Verify disk permissions" without success.
    The system is on an SSD volume whereas my home volume is on an internal HD. But other users with (smaller) accounts residing on the system volume have the same problem.
    Each time I open the print dialog, the following message appears in the logs:
         com.apple.Preview.TrustedBookmarksService[2159]: Failure to de-serialize bookmark data file.
    I removed  files related to Preview in ~/Library/Preferences/
    There is no *.plist file in ~/Library/Application Support/Preview
    Thanks!

    Pages 5.2 Mac OSX 10.9.2
    Start Pages app
    Create a blank document
    File > Save or <Command>+S
    Select Mac Device and find your user folder or favorite, Desktop (not iCloud)
    Error: the file "Untitled.pages" couldn't be opened!?!
    Repeat giving the document a different name and it works
    Since when do we write error messages with "n't"?
    Usually a well written error message offers a suggestion as to what you might do about it?
    Since it says opened and I clicked on Save, there is a bug in there somewhere.
    All I was trying to do today was copy and paste some text from a website into numbers spreadsheet
    Both Edit > Paste options but the text in one cell so I tried to save it as a text file first to try and import the data
    Text Edit does not have a text only export format so before loading Terminal and starting vi or emacs, I tried pages. I'll go try XCode's editor or my Windows 7 vm with notepad and openoffice
    I miss the old Pages with the Appleworks importer, this one needs more Quality Assurance Testing IMHO
    WWSJD "What Would Steve Jobs do?"

  • How to save message into internal table?

    Hi,everyone!
    I have a problem when I'm coding.I want to store messages into a internal table.Can you help me?
    Thanks!

    Hello Feng
    If you are already working on SAP basis release >= 6.20 I would recommend the most versatile message handler of all: interface <b>IF_RECA_MESSAGE_LIST</b>
    Perhaps you will find the following sample report ZUS_SDN_APOLLO_13
    (see also: <a href="https://wiki.sdn.sap.com/wiki/display/profile/2007/07/09/MessageHandling-FindingtheNeedleintheHaystack">Message Handling - Finding the Needle in the Haystack</a>) useful.
    *& Report  ZUS_SDN_APOLLO_13
    REPORT  zus_sdn_apollo_13
      LINE-SIZE 200.
    TYPE-POOLS: abap.
    TYPES: BEGIN OF ty_s_outtab.
    TYPES:   status     TYPE exception.
    INCLUDE TYPE bapiret2  AS msg.
    TYPES: END OF ty_s_outtab.
    TYPES: ty_t_outtab  TYPE STANDARD TABLE OF ty_s_outtab
                        WITH DEFAULT KEY.
    DATA:
      gs_layout         TYPE lvc_s_layo,
      gt_outtab         TYPE ty_t_outtab.
    DATA:
      gd_title          TYPE lvc_title,
      gd_msgv           TYPE symsgv,
      gd_msg            TYPE bapi_msg,
      gs_msg            TYPE recamsg,
      gs_return         TYPE bapiret2,
      gt_return         TYPE bapirettab,
      go_msglist        TYPE REF TO if_reca_message_list,
      go_random         TYPE REF TO cl_random_number,
      gif_random        TYPE REF TO if_random_number.
    PARAMETERS:
      p_opt1  RADIOBUTTON GROUP radi  DEFAULT 'X',
      p_opt2  RADIOBUTTON GROUP radi,
      p_opt3  RADIOBUTTON GROUP radi.
    SELECTION-SCREEN ULINE.
    PARAMETERS:
      p_opt4  RADIOBUTTON GROUP radi,
      p_opt5  RADIOBUTTON GROUP radi,
      p_opt6  RADIOBUTTON GROUP radi.
    SELECTION-SCREEN ULINE.
    PARAMETERS:
      p_count    TYPE numc3     DEFAULT '4',
      p_level    TYPE ballevel  DEFAULT '7'.
    DEFINE mac_build_msg.
      clear: gs_msg.
      gs_msg-msgty = &5.
      gs_msg-msgid = '00'.
      gs_msg-msgno = '398'.
      gs_msg-msgv1 = &1.
      gs_msg-msgv2 = &2.
      gs_msg-msgv3 = &3.
      gs_msg-msgv4 = &4.
      gs_msg-detlevel = &6.
    END-OF-DEFINITION.
    *  msgty
    *  msgid
    *  msgno
    *  msgv1
    *  msgv2
    *  msgv3
    *  msgv4
    *  msgv1_src
    *  msgv2_src
    *  msgv3_src
    *  msgv4_src
    *  detlevel
    *  probclass
    *  alsort
    *  time_stmp
    *  msg_count
    *  context
    *  params
    START-OF-SELECTION.
      " Create message handler
      go_msglist = cf_reca_message_list=>create( ).
      " Create random number instance
      CREATE OBJECT go_random TYPE cl_random_number.
      gif_random ?= go_random.
      gif_random->init( ).
      PERFORM message_handling_1.
      PERFORM message_handling_2.
      PERFORM message_handling_3.
      PERFORM message_handling_4.
    END-OF-SELECTION.
    *&      Form  MESSAGE_HANDLING_1
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM message_handling_1 .
      CHECK ( p_opt1 = abap_true ).
      gd_title = 'Information System 1 (IS1)'.
      SET TITLEBAR 'TITLE' WITH gd_title.
      WRITE: / 'Apollo 13 Mission'.
      WRITE: / syst-uline.
      WRITE: / 'Take-Off             -> ok'.
      WRITE: / 'Leaving Orbit        -> ok'.
      WRITE: / 'Trajectory           -> ok'.
      WRITE: /.
      FORMAT COLOR COL_NEGATIVE.
      WRITE: / 'Explosion happened   -> not ok'.
      WRITE: / 'Command and Service module (CSM) -> damaged'.
      FORMAT RESET.
      WRITE: / 'Lunar module (LM)    -> not affected, ok'.
      MESSAGE text-hou TYPE 'S'.
    ENDFORM.                    " MESSAGE_HANDLING_1
    *&      Form  message_handling_2
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM message_handling_2 .
    * define local data
      DATA:
        ld_success(6)  TYPE n,
        ld_warning(6)  TYPE n,
        ld_failure(6)  TYPE n,
        ld_total(6)    TYPE n.
      CHECK ( p_opt2 = abap_true ).
      gd_title = 'Information System 2 (IS2)'.
      SET TITLEBAR 'TITLE' WITH gd_title.
      PERFORM generate_messages.  " simulation of messages
      CALL METHOD go_msglist->get_list_as_bapiret
        IMPORTING
          et_list = gt_return.
      " Calculate message types and total
      ld_total   = 0.
      ld_success = 0.
      ld_warning = 0.
      ld_failure = 0.
    " Print messages as WRITE list
      LOOP AT gt_return INTO gs_return.
        IF ( gs_return-type = 'E' ).
          ADD 1 TO ld_failure.
        ELSEIF ( gs_return-type = 'W' ).
          ADD 1 TO ld_warning.
        ELSE.
          ADD 1 TO ld_success.
        ENDIF.
      ENDLOOP.
      ld_total = ld_success + ld_warning + ld_failure.
      WRITE: / 'Total Message =', ld_total.
      WRITE: / 'Failures      =', ld_failure.
      WRITE: / 'Warnings      =', ld_warning.
      WRITE: / 'Successes     =', ld_success.
      WRITE: / syst-uline.
      SKIP.
    " Colouring depending on message type
      LOOP AT gt_return INTO gs_return.
        IF ( gs_return-type = 'E' ).
          FORMAT COLOR COL_NEGATIVE.
        ELSEIF ( gs_return-type = 'W' ).
          FORMAT COLOR COL_TOTAL.
        ELSE.
          FORMAT RESET.
        ENDIF.
        WRITE: / gs_return-type, gs_return-message+0(100).
      ENDLOOP.
    ENDFORM.                    " message_handling_2
    *&      Form  message_handling_3
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM message_handling_3 .
    * define local data
      DATA:
        ls_outtab    TYPE ty_s_outtab.
      DATA:
        ld_success(6)  TYPE n,
        ld_warning(6)  TYPE n,
        ld_failure(6)  TYPE n,
        ld_total(6)    TYPE n.
      CHECK ( p_opt3 = abap_true ).
      gd_title = 'Information System 3 (IS3)'.
      SET TITLEBAR 'TITLE' WITH gd_title.
      PERFORM generate_messages.  " simulation of messages
      CALL METHOD go_msglist->get_list_as_bapiret
        IMPORTING
          et_list = gt_return.
      REFRESH: gt_outtab.
      " Calculate message types and total
      ld_total   = 0.
      ld_success = 0.
      ld_warning = 0.
      ld_failure = 0.
    " Define the logic for setting exception status (LED)
      LOOP AT gt_return INTO gs_return.
        CLEAR: ls_outtab.
        ls_outtab-msg = gs_return.
        IF ( gs_return-type = 'E' ).
          ls_outtab-status = '1'.  " red
          ADD 1 TO ld_failure.
        ELSEIF ( gs_return-type = 'W' ).
          ls_outtab-status = '2'.  " yellow
          ADD 1 TO ld_warning.
        ELSE.
          ls_outtab-status = '3'.  " green
          ADD 1 TO ld_success.
        ENDIF.
        APPEND ls_outtab TO gt_outtab.
      ENDLOOP.
      ld_total = ld_failure + ld_warning + ld_success.
      CLEAR: gs_layout.
      gs_layout-cwidth_opt = abap_true.
      gs_layout-zebra      = abap_true.
      gs_layout-excp_fname = 'STATUS'.
      gs_layout-excp_led   = abap_true.
      gs_layout-smalltitle = abap_true.
      CONCATENATE 'T(' ld_total   ')  '
                  'E(' ld_failure ')  '
                  'W(' ld_warning ')  '
                  'S(' ld_success ')  '
        INTO gd_title SEPARATED BY space.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
        EXPORTING
          i_structure_name = 'BAPIRET2'
          i_grid_title     = gd_title
          is_layout_lvc    = gs_layout
        TABLES
          t_outtab         = gt_outtab
        EXCEPTIONS
          OTHERS           = 1.
    ENDFORM.                    " message_handling_3
    *&      Form  message_handling_4
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM message_handling_4 .
    * define local data
      CHECK ( p_opt4 = abap_true   OR
              p_opt5 = abap_true   OR
              p_opt6 = abap_true ).
      IF ( p_opt4 = abap_true ).
        gd_title = 'Information System 4 (IS4)'.
        SET TITLEBAR 'TITLE' WITH gd_title.
      ELSEIF ( p_opt5 = abap_true ).
        gd_title = 'Information System 5 (IS5)'.
        SET TITLEBAR 'TITLE' WITH gd_title.
      ELSE.
        gd_title = 'Information System 6 (IS6)'.
        SET TITLEBAR 'TITLE' WITH gd_title.
      ENDIF.
      PERFORM generate_messages.  " simulation of messages
      PERFORM display_log.
    ENDFORM.                    " message_handling_4
    *&      Form  GENERATE_MESSAGES
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM generate_messages .
    * define local data
      mac_build_msg 'Apollo 13 Mission: Spacecraft'
                     space space space 'I' '1'.
    **  DEFINE mac_build_msg.
    **    clear: gs_msg.
    **    gs_msg-msgty = &5.
    **    gs_msg-msgid = '00'.
    **    gs_msg-msgno = '398'.
    **    gs_msg-msgv1 = &1.
    **    gs_msg-msgv2 = &2.
    **    gs_msg-msgv3 = &3.
    **    gs_msg-msgv4 = &4.
    **    gs_msg-detlevel = &6.
    **  END-OF-DEFINITION.
      go_msglist->add( is_message = gs_msg ).
      DO 6 TIMES.
        CASE syst-index.
          WHEN '1'.
            mac_build_msg 'Command and Service Module (CSM)'
               space space space 'I' '2'.
          WHEN '2'.
            mac_build_msg 'Lunar Module (LM)' space space space 'I' '2'.
          WHEN '3'.
            mac_build_msg 'Additional Module (M-1)'
              space space space 'I' '2'.
          WHEN '4'.
            mac_build_msg 'Additional Module (M-2)'
              space space space 'I' '2'.
          WHEN '5'.
            mac_build_msg 'Additional Module (M-3)'
              space space space 'I' '2'.
          WHEN '6'.
            mac_build_msg 'Additional Module (M-4)'
              space space space 'I' '2'.
          WHEN OTHERS.
            EXIT.
        ENDCASE.
        go_msglist->add( is_message = gs_msg ).
    "   recursive call of routine
        PERFORM generate_messages_1 USING syst-index 'Modul' '3'.
      ENDDO.
    ENDFORM.                    " GENERATE_MESSAGES
    *&      Form  GENERATE_MESSAGES_1
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM generate_messages_1
                         USING
                            value(ud_index)     TYPE i
                            value(ud_msgv)      TYPE symsgv
                            value(ud_detlevel)  TYPE ballevel.
    * define local data
      DATA:
        ld_integer         TYPE i,
        ld_msgty           TYPE symsgty,
        ld_msgv            TYPE symsgv,
        ld_detlevel        TYPE ballevel.
      DO p_count TIMES.
        WRITE syst-index TO ld_msgv NO-ZERO LEFT-JUSTIFIED.
        IF ( ud_detlevel = '3' ).
          CONCATENATE ud_msgv ld_msgv INTO ld_msgv
            SEPARATED BY space.
        ELSE.
          CONCATENATE ud_msgv ld_msgv INTO ld_msgv
            SEPARATED BY '.'.
        ENDIF.
        CONDENSE ld_msgv.
        gd_msgv = ld_msgv.
        IF ( ud_index = 1 ).
          ld_integer = gif_random->get_random_int( 300 ).
          IF ( ld_integer = 1 ).
            ld_msgty = 'E'.
            CONCATENATE gd_msgv 'failed' INTO gd_msgv SEPARATED BY ' -> '.
          ELSEIF ( ld_integer BETWEEN 1 AND 10 ).
            ld_msgty = 'W'.
            CONCATENATE gd_msgv 'check(?)' INTO gd_msgv SEPARATED BY ' -> '.
          ELSE.
            ld_msgty = 'S'.
            CONCATENATE gd_msgv 'OK' INTO gd_msgv SEPARATED BY ' -> '.
          ENDIF.
        ELSE.
          ld_msgty = 'S'.
          CONCATENATE gd_msgv 'OK' INTO gd_msgv SEPARATED BY ' -> '.
        ENDIF.
        mac_build_msg gd_msgv space space space ld_msgty ud_detlevel.
        go_msglist->add( is_message = gs_msg ).
        IF ( ud_detlevel < p_level ).
          ld_detlevel = ud_detlevel + 1.
          PERFORM generate_messages_1 USING ud_index ld_msgv ld_detlevel.
        ENDIF.
      ENDDO.
    ENDFORM.                    " GENERATE_MESSAGES_1
    *&      Form  DISPLAY_LOG
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM display_log .
    * define local data
      DATA:
        ld_handle           TYPE balloghndl,
        lt_log_handles      TYPE bal_t_logh,
        ls_profile          TYPE bal_s_prof.
    " Get log handle of collected message list
      ld_handle = go_msglist->get_handle( ).
      APPEND ld_handle TO lt_log_handles.
      IF ( p_opt4 = 'X' ).
    *   get a display profile which describes how to display messages
        CALL FUNCTION 'BAL_DSP_PROFILE_DETLEVEL_GET'
          IMPORTING
            e_s_display_profile = ls_profile.  " tree & ALV list
      ELSEIF ( p_opt5 = 'X' ).
    *   get standard profile to display one log
        CALL FUNCTION 'BAL_DSP_PROFILE_SINGLE_LOG_GET'
          IMPORTING
            e_s_display_profile = ls_profile.
      ELSE.
        CALL FUNCTION 'BAL_DSP_PROFILE_NO_TREE_GET'
          IMPORTING
            e_s_display_profile = ls_profile.
      ENDIF.
    * set report to allow saving of variants
      ls_profile-disvariant-report = sy-repid.
    *   when you use also other ALV lists in your report,
    *   please specify a handle to distinguish between the display
    *   variants of these different lists, e.g:
      ls_profile-disvariant-handle = 'LOG'.
      CALL FUNCTION 'BAL_DSP_LOG_DISPLAY'
        EXPORTING
          i_s_display_profile          = ls_profile
          i_t_log_handle               = lt_log_handles
        EXCEPTIONS
          profile_inconsistent         = 1
          internal_error               = 2
          no_data_available            = 3
          no_authority                 = 4
          OTHERS                       = 5.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY_LOG
    Regards
      Uwe

  • In iphoto, when I click on Print, the preview image it shows me is an enlarged section of my photo. I cropped the photo and checked with no restraints. Once the photo goes to Print, I can't fix it back to the way it is in iphoto.

    In iphoto, when I click on Print, the preview image it shows me is an enlarged section of my photo. (In iphoto I hadI cropped the photo and checked "with no restraints." )
    Once the photo goes to Print, I can't fix it back to the way it is in iphoto.

    It is working now. I no longer get the message about the item not being available in the US and I can access the store.

  • Photoshop Elements 9 prints and Previews are blank

    Recently installed Elements (not the trial, the paid version) on a new MacBook Pro, and it not only won't print, the Print Preview is blank. Wondering if it was the document, so I created a new document with Elements, painted a few strokes, and tried printing again. Same result. The Print Preview is blank. The thumbnail of the image DOES show up in the Print dialog box. I re-installed the software. I deleted and re-installed the printer. I restarted the computer. All other apps are able to print, and Preview app is able to print the same documents that Elements will not print. I've been doing IT for years, and I've never seen anything like this. Any suggestions?

    I may have just found a solution.  In the print dialog box, under more options, colour management...if i leave the Colour Handling to Photoshop and change Printer Profile to Apple RGB or to my Printer colour profile then I could print. However, colour is off although it looked nice in print preview.  So, instead I downloaded ICC Colour Profile for Mac from adobe and change back the Printer Profile to Adobe RGB(1998) which is same as above Image Space profile.
    And I am quite satisfied with the print output.
    Begin forwarded message:
    From: Alina Hashim <[email protected]>
    Date: May 11, 2011 8:25:20 AM GMT+04:00
    To: [email protected]
    Subject: Re: Photoshop Elements 9 prints and Previews are blank
    Yes, sorry for the confusion. Normally i go to the web link to post message but it didn't work this time, so i replied directly from email and that seem to be ok.
    Anyway, my printer is Canon MG5240. After reading your thread, I installed updated driver from Apple (printer driver for Mac) and when still cannot print, I called a canon rep here and asked about it and he said to go into canon website only. So I loaded driver from Canon website which also didn't seem to change anything. When I was using Elements 9 trial version i did not have problem printing from the software.

  • Table style alignment ignored?

    TCS 2.0, linking FrameMaker 9 (unstructured) files to RH8.
    My FrameMaker files have several one-cell right-aligned tables. I mapped all the tables to a table style called "Product" in RoboHelp.
    The table properties in style mapping are set to be right-aligned for this table. However, the table continues to display as left-aligned in the preview and the output.
    I am not very knowledgeable about css but decided to edit the css for this table to specify right-aligned.
    Here is my css entry for this table style:
    table.Product {
            align: right;
            font-size: 10pt;
            text-align: right;     
    The table is still left-aligned.
    Looking at the HTML view for the table, there is this line:
    <?rh-align_start align="left" ?>
    When I manually change "left" to "right," my table is right aligned and looks the way I want.  This rh-align_start property seems to be something that is not in the css or is overriding the css.
    I can also right-click on the table and select right-aligned from the table properties, which accomplishes the same thing. However, I have thousands of these tables and need an automated solution.
    Is this a RH bug? How can I make this table style right-aligned?
    Thanks,
    Alexandra

    Hi Michael,
    that was the solution - thank you for your help! Adjusting this setting (which by the way is named "DisplayUsingPrinterMetrics=On" in my case) resolved the correct line breaking. The maker.ini is full of miracles.
    Robert

  • Printing in Preview (pdf) in handout format

    How can I print in preview with handout format? 3 slides/page only filling half of page. This option is available in keynote but not preview. I really need this option for my biochem course. Help!

    Adobe Reader does not work. I get the standard print dialog, but once I hit print it beachballs. The print progress dialog from printer setup doesn't even come up.
    I've now tried it with the standard EFI x3e 22c-km ps v2.0 drivers that come with OS X and with the ones I can download from imagistic's (the printer brand) website. They are both the same version.
    I ran a cupstestPPD command from the CLI and this is what I got... from the standard OSX driver:
    *FAIL* REQUIRED EFDuplex does not define choice None!
    REF: Page 122, section 5.17
    *FAIL* Bad EFDuplex choice False!
    REF: Page 122, section 5.17
    *FAIL* Bad EFDuplex choice Top!
    REF: Page 122, section 5.17
    *FAIL* Bad EFDuplex choice Bottom!
    REF: Page 122, section 5.17
    WARN Duplex option keyword EFDuplex should be named Duplex!
    WARN EFTrapping shares a common prefix with EFTrappingOpt
    REF: Page 15, section 3.2.
    WARN EFDuplex shares a common prefix with EFDuplexOption
    REF: Page 15, section 3.2.
    WARN EFPunch shares a common prefix with EFPunchHoleNum
    REF: Page 15, section 3.2.
    I don't know if any of this helps.
    The last time I tried to print our newsletter, I was running 10.4.9... I am now running 10.4.10.
    This is my only 11x17 printer, and our PC's colormatching stinks. I can print from it, but if I do I will probably need to go to greyscale.
    thanks for the help so far. But Like I said, my 17in MBP works fine (But is in the shop for a repair ). It's running 10.4.10 as well.
    Message was edited by: bigj6360

  • Problems with vertical cell borders and the default table style

    When laying out tables in Word, I like to use thin horizontal lines (cell borders) and thick-ish white vertical lines. The vertical white cell borders create a subtle negative space that is less cluttered than the typical boxed-in-all-sides style.
    Issue 1.
    In Pages, horizontal cell borders seem to take precedence over vertical cell borders so my vertical white line trick doesn't work. Is there a way to force my vertical white cell borders to "show up" over my think black horizontal cell borders?
    Issue 2.
    So, for the time being, I'm not using vertical white cell borders in tables; instead, I set the vertical cell borders to "none." Unfortunately, when I try to set the default table style using a table with no vertical cell borders, Pages adds the vertical cell borders anyway. Does anyone know a way to get Pages to surrender?
    Message was edited by: Steve in Seattle

    I must apologizes.
    It seems that I didn't understand well the problem.
    Issue 1.
    In Pages, horizontal cell borders seem to take precedence over vertical cell borders so my vertical white line trick doesn't work. Is there a way to force my vertical white cell borders to "show up" over my think black horizontal cell borders?
    NO
    Issue 2.
    So, for the time being, I'm not using vertical white cell borders in tables; instead, I set the vertical cell borders to "none." Unfortunately, when I try to set the default table style using a table with no vertical cell borders, Pages adds the vertical cell borders anyway. Does anyone know a way to get Pages to surrender?
    I checked and here, aftere defining a new default format with vertical lines set to none, this format is used when I cvreate a new table.
    But the same with horizontal lines doesn't apply.
    _Go to "Provide Pages Feedback" in the "Pages" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'10
    Yvan KOENIG (from FRANCE mardi 28 avril 2009 22:31:45)

  • Clearing overrides in Cell and Table Styles causes crash

    I can not "Apply [...], Clear Overrides" in a Cell, Table or Paragraph style without InDesign CC crashing. I have removed all Object styles from the tables that I am working with. I tried exporting to .idml and starting a new file and have the same issue.

    @Chris – Is InDesign CC patched to the latest version?
    Are you interested to test a script by Marc Autret posted at the inDesign Scripting Forum?
    See the following thread and posts:
    creativejoan0425
    How to break link to cell/table style in a selection
    Dec 14, 2013 3:51 PM
    https://forums.adobe.com/message/5929954#5929954
    See Marc Autret's script for cleaning different levels:
    https://forums.adobe.com/message/5931169#5931169
    Change the last line of his code to your will. Basically you have 4 options. Chose *one* of those:
    Option 1 LEVEL 0:
    breakLinkToCellStyleSelection(0); // LEVEL 0  => only clear overrides relative to *defined* style attributes
    Option 2 LEVEL 1:
    breakLinkToCellStyleSelection(1); // LEVEL 1  => clear all overrides (through root style)
    Option 3 LEVEL 2:
    breakLinkToCellStyleSelection(2); // LEVEL 2  => clear all overrides and apply [None]
    Option 4 LEVEL 3:
    breakLinkToCellStyleSelection(3); // LEVEL 3  => apply [None] *in depth* (i.e. release all attributes)
    Select your cells or your table and run the whole script.
    Does it crash InDesign CC as well?
    Uwe

  • Error messages in a table

    Hi everyone,
    I have a problem when displaying error messages in a table (with values, not based on a model)
    In a column I have an inputText and a validation that checks valuechangelistener. If not true, throw an error message for that component.
    facesContext.addMessage (client, message);
    The table is a DropTarget so each time dragging the dragsource to the table renders the table and missed the error message.
    I had thought to save the id of the components in a list and the dragDropEndListener force to be redisplayed.
    The problem is that the IDs of the components varies each time the table is rendered so even save the id of the components is worthless because they are not the same.
    Anybody can help me?How I can re-display the errors of the components?
    I can not use validator instead of valuechangelistener

    I am not sure if you want something like highlighting the components which have errors -
    If yes , then try this code bit
    public void addMessage(UIComponent component, FacesMessage.Severity type,
    String message) {
    FacesContext fctx = FacesContext.getCurrentInstance();
    FacesMessage fm = new FacesMessage(type, message, null);
    fctx.addMessage(component.getClientId(fctx), fm);
    You can call the method like this addMessage(this.componentName,FacesMessage.SEVERITY_ERROR,ErroMessage)
    -Sudipto

  • Can not print from preview after Lion Update

         I can't print from preview since I updated to Lion. After I hit command P or select print from the file tab preview totally freezes up and gives me the spinning wheel of death until I force quit preview. I have no issues printing from anything else, such as word, excel, web pages.  So I don't think it's a printer/driver error.  Help?

    I would still mention what printer you have and make sure you have the latest printer driver.

  • Printing from Preview in TS Environment

    Post Author: John@SMC
    CA Forum: Upgrading and Licensing
    Using Crystal Reports XI with the latest fixes on a windows 2000 advanced server with TS Enabled. Logged into the TS with admin rights. I can run a report and print directly to a printer just fine. If I have enable preview, the report runs and the output comes to the view screen. If I attempt to print from here, the report will not print.
    I have logged into the server with the same name from the console, and this behaviour does not occur. Printing from preview works just fine.
    If I have the print queue open when I try to print from a client session, I can see that Crystal is writing a file to the print queue, but it is 0 zero bytes...
    This occurred after installation of Service Pack 2, and I have tried to completely unistall crystal reports from the server and reinstall with no joy.
    I sure could use some advice.
    Thanks...

    Post Author: John@SMC
    CA Forum: Upgrading and Licensing
    So here is how I fixed this problem.
    I uninstalled all crystal files from the server, including the .dll's that came with the program I was try to print from. Used the manual uninstall procedure to completely remove crystal XI from the server. Restarted the server. Reinstalled Crystal XI and applies SP 3. The file that Business objects referenced commonXIwin_chf.zip did not fix it. SP3 Did--- Happy now

  • Print message print cartridge cannot move because of paper jam but the paper jam has been cleared.

    My Envy 4502 printer message window says that the print cartridge cannot move and to clear any paper jam obstruction.  There was a paper jam and I cleared it but the message "the print cartridge cannot move and to clear any paper jam obstruction" remains there and I cannot remove it or get the printer to print.  I tried everythng listed in the troubleshooting section of the help guide in the software.  I uninstalled the printer and then reinstalled it which didn't help  in the slightest--the message about the print cartridge is still there.  I also tried unplugging the printer overnight (to try to clear the memory)  and this also did not help--that message is still there.  By the way, I can easily move the printer cartridge by hand and I can hear the cartridge moving when the printer attempts to work.  I would appreciate any help from anyone to get my printer to  work again!

    Hi Cat2c,
    Welcome to the hp support forum,
    Thank you for your query.
    Please find steps to remove paper jam.
    Hope this helps
    I am a HP Employee.
    The opinions expressed here are my personal opinions, not of HP.
    Make it easier for other people to find solutions, by marking an answer “Accept as Solution” if it solves your problem.
    Click on Thumbs up if my post helped you.

  • When I put a lost lock on my iPad will it still show notifications and message previews on the Home Screen?

    When I put a lost lock on my iPad will it still show notifications and message previews on the Home Screen?

    What format are these movies in?
    From this article: http://support.apple.com/kb/HT2729
    What video content works with iTunes and mobile devices?
    iTunes:
    Video content purchased from the iTunes Store.
    QuickTime and MPEG-4 movie files that end in ".mov", ".m4v", or ".mp4" and are playable in QuickTime Player.
    Video podcasts.
    iTunes Digital Copies.
    iTunes Store Movie Rentals (Requires iTunes 9 or later).
    B-rock

Maybe you are looking for

  • Idoc to SOAP Async - Sync - stuck @ bpm bridge

    Hi there, i'm implementing an SAP - Idoc / Async ---> PI - > Soap / Sync communication, the idea is that i update the Idoc Status back on erp using and status idoc, i got the whole scenenario working but the Async - Sync bridge part with the status i

  • Two Iphones - ITunes thinks they're the same phone

    I screwed up and somehow synced both of our new Iphones to ITunes under the same name and now it recognizes both our phones as the same one phone. Text messages sent to one of our phones are showing up on the other phone as well. I can't see a way to

  • Photoshop CS5 Extended, Rotate Brush Tool

    Where is the Rotate Brush Tool, I dont see it Thanks simon

  • HTTP Post to Servlet

    Hi all, I am faced with my first exposure to the use of servlets so I have NO idea where to start. After I post this, I will naturally go and research what I can to become familiar with the concept., but I have really just one question to begin with.

  • I want to record streaming video

    I want to record some streaming video from the Olympics. The sailing events were streamed live and are still available for viewing from some server through the NBC site. I can't figure how to do it. Anyone know?