Ole Word Automation, Remove Table Borders

Hi All,
I have created a new word document with a table of 3 rows and 3 columns using the ole. I want to remove vertical lines. The borders property enable only shows or disables the borders. I want to remove any border I want.
I recorded a macro at Word. But I couldn't managed to adopt in ABAP. I will be glad if you can help. Thanks.
Word Macro :
Selection.Borders(wdBorderRight).LineStyle = wdLineStyleNone
ABAP code :
  GET PROPERTY OF gs_actdoc 'Tables' = gs_tables .
  GET PROPERTY OF gs_selection 'Range' = gs_range .
  CALL METHOD OF gs_tables 'Add' = gs_table
  EXPORTING
  #1 = gs_range
  #2 = '3'
  #3 = '3'.
  GET PROPERTY OF gs_table 'Borders' = gs_table_border .
  SET PROPERTY OF gs_table_border 'Enable' = '1' . "With border

Hi,
I've found a solution.
After creating table and enabling borders, you can select cells and delete borders.
  GET PROPERTY OF gs_actdoc 'Tables' = gs_tables .
  GET PROPERTY OF gs_selection 'Range' = gs_range .
**--Adding a table with 3 rows and 3 columns
  CALL METHOD OF gs_tables 'Add' = gs_table
  EXPORTING
  #1 = gs_range " Handle for range entity
  #2 = '3' "Number of rows
  #3 = '3'. "Number of columns
**--Setting border attribute for the table
  GET PROPERTY OF gs_table 'Borders' = gs_table_border .
  SET PROPERTY OF gs_table_border 'Enable' = '1' . "With border
  CALL METHOD OF gs_table 'Cell' = gs_cell1
  EXPORTING
  #1 = '1' "first row
  #2 = '1'. "first column
  CALL METHOD OF gs_cell1 'BORDERS' = borders
    EXPORTING
    #1 = '2'. "1 top, 2 left, 3 bottom, 4 right (border)
  SET PROPERTY OF borders 'LineStyle' = '0'.

Similar Messages

  • Removing table borders

    Is it possible to remove the line borders for a table? I have a document that has 2 columns. In one of my columns I want to have a section that has 2 columns in it. I could not figure out how to do that so I decided to use a 2 column table. Now I would like to turn off the borders to just get the (sub) 2 column effect. Don't see how to do that.
    1. Is it possible to have a 2 column section inside an existing column of text.
    2. How do I turn off the line borders for a table?
    Thanks,
    Alfredo

    Hello Alfredo Jahn,
    1) You can have a three column layout between two two column layouts on a page and you can adjust it so it looks like a two column layout with a little section of two columns in one of the big columns. See this multi-column page image:
    Insert two layout breaks (menu: "Insert/Layout Break"). Set the text cursor into the second layout and show the layout inspector. Set the column count to three and deactivate the option for same column with. Now set the width of the columns and spaces between them manually in the list, so it looks like you need them.
    But you have no text flow between the different column layouts, because there are layout breaks.
    2) When the table is selected, show the table inspector and press in the tab "Table" in the bottom section the left button of the button row titled "Borders". Now all borders are selected. Show the graphic inspector and disable the line appearance in the pull-down menu.
    You can select every border of every cell by option-click on them (for multi-selection hold the shift key).

  • OLE-Word with table

    Hi,
    i use OLE-Word to create a table in a word document and fill them.
    That's work OK, but i will position the table on a specific Positon on the page.
    Position shell be horizontal 7 and vertical 8.
    I have tried it with recording in word, bot i don't know the statements in ABAP.
    Has anyone an idea to solve it or an example?
    thanks.
    Regards, Dieter.
    Edited by: Dieter Gröhn on Jun 16, 2008 10:34 AM

    Here my code:
    REPORT ZGRO_MS_WORD_OLE_FORMLETTER_T0.
    *--Include for OLE-enabling definitions
    INCLUDE OLE2INCL .
    *--Global variables
    *--Variables to hold OLE object and entity handles
    DATA GS_WORD        TYPE OLE2_OBJECT . "OLE object handle
    DATA GS_DOCUMENT    TYPE OLE2_OBJECT . "Documents
    DATA GS_ACTIV_DOC   TYPE OLE2_OBJECT . "Active document
    DATA GS_APPLICATION TYPE OLE2_OBJECT . "Application
    DATA GS_OPTIONS     TYPE OLE2_OBJECT . "Application options
    DATA GS_ACTWIN      TYPE OLE2_OBJECT . "Active window
    DATA GS_ACTPAN      TYPE OLE2_OBJECT . "Active pane
    DATA GS_VIEW        TYPE OLE2_OBJECT . "View
    DATA GS_SELECTION   TYPE OLE2_OBJECT . "Selection
    DATA GS_FONT        TYPE OLE2_OBJECT . "Font
    DATA GS_PARFORMAT   TYPE OLE2_OBJECT . "Paragraph format
    DATA GS_TABLES      TYPE OLE2_OBJECT . "Tables
    DATA GS_RANGE       TYPE OLE2_OBJECT . "Range handle for various ranges
    DATA GS_TABLE       TYPE OLE2_OBJECT . "One table
    DATA GS_BORDER      TYPE OLE2_OBJECT . "Table border
    DATA GS_CELL        TYPE OLE2_OBJECT . "One cell of a table
    DATA GS_PARAGRAPH   TYPE OLE2_OBJECT . "Paragraph
    START-OF-SELECTION .
      PERFORM WORD_APPLIKATION.
      PERFORM TABELLE_ERSTELLEN.
      PERFORM TABELLE_ZELLE.
      FREE OBJECT GS_WORD .
    FORM WORD_APPLIKATION.
    *--Creating OLE object handle variable
      CREATE OBJECT GS_WORD 'WORD.APPLICATION' .
      IF SY-SUBRC NE 0 .
        MESSAGE S000(SU) WITH 'Error while creating OLE object!'.
        LEAVE PROGRAM .
      ENDIF .
    *--Setting object's visibility property
      SET PROPERTY OF GS_WORD 'Visible' = '1' .
    *--Opening a new document
      GET PROPERTY OF GS_WORD 'Documents' = GS_DOCUMENT.
      CALL METHOD OF GS_DOCUMENT 'Add' .
    *--Getting active document handle
      GET PROPERTY OF GS_WORD 'ActiveDocument' = GS_ACTIV_DOC .
    *--Getting applications handle
      GET PROPERTY OF GS_ACTIV_DOC 'Application' = GS_APPLICATION .
    *--Setting the measurement unit
      GET PROPERTY OF GS_APPLICATION 'Options' = GS_OPTIONS .
      SET PROPERTY OF GS_OPTIONS 'MeasurementUnit' = '1' . "CM
    *--Getting handle for the selection which is here the character at the
    *--cursor position
      GET PROPERTY OF GS_APPLICATION 'Selection' = GS_SELECTION .
      GET PROPERTY OF GS_SELECTION 'Font' = GS_FONT .
      GET PROPERTY OF GS_SELECTION 'ParagraphFormat' = GS_PARFORMAT .
    ENDFORM.                    "word_applikation
    FORM TABELLE_ERSTELLEN.
    *--Getting entity handles for the entities on the way
      GET PROPERTY OF GS_ACTIV_DOC 'Tables' = GS_TABLES .
      GET PROPERTY OF GS_SELECTION 'Range' = GS_RANGE .
    *--Adding a table
      CALL METHOD OF GS_TABLES 'Add' = GS_TABLE
           EXPORTING #1 = GS_RANGE
                     #2 = '1' "Number of rows
                     #3 = '1'. "Number of columns
    *--Setting border attribute
      GET PROPERTY OF GS_TABLE 'Borders' = GS_BORDER .
      SET PROPERTY OF GS_BORDER 'Enable' = '0' .                "0 o. 1
    DATA GS_ROWS   TYPE OLE2_OBJECT.
      GET PROPERTY OF GS_TABLE 'Rows' = GS_ROWS.
      SET PROPERTY OF GS_ROWS  'WrapAroundText' = '1'.
      SET PROPERTY OF GS_ROWS  'HorizontalPosition' = '3'.
      SET PROPERTY OF GS_ROWS  'RelativeHorizontalPosition' = '1'.
      SET PROPERTY OF GS_ROWS  'VerticalPosition' = '8'.
      SET PROPERTY OF GS_ROWS  'RelativeVerticalPosition' = '1'.
      set property of GS_ROWS  'AllowOverlap'     = '0'.
    ENDFORM.                    "Tabelle_erstellen
    FORM TABELLE_ZELLE.
    *--Getting cell coordinates
      CALL METHOD OF GS_TABLE 'Cell' = GS_CELL
        EXPORTING #1 = '1'
        #2 = '1'.
    *--Getting the range handle to write the text
      GET PROPERTY OF GS_CELL 'Range' = GS_RANGE .
    *--Filling the cell
      SET PROPERTY OF GS_RANGE 'Text' = 'Test' .
    ENDFORM.                    "TABELLE_Zelle
    in Word i record and get this:
    Sub Makro1()
    ' Makro1 Makro
    ' Makro aufgezeichnet am 16.06.2008
        ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=1, NumColumns:= _
            1, DefaultTableBehavior:=wdWord9TableBehavior, AutoFitBehavior:= _
            wdAutoFitFixed
        With Selection.Tables(1)
            If .Style <> "Tabellengitternetz" Then
                .Style = "Tabellengitternetz"
            End If
            .ApplyStyleHeadingRows = True
            .ApplyStyleLastRow = True
            .ApplyStyleFirstColumn = True
            .ApplyStyleLastColumn = True
        End With
        With Selection.Tables(1).Rows
            .WrapAroundText = True
            .HorizontalPosition = CentimetersToPoints(2)
            .RelativeHorizontalPosition = wdRelativeHorizontalPositionPage
            .DistanceLeft = CentimetersToPoints(0.25)
            .DistanceRight = CentimetersToPoints(0.25)
            .VerticalPosition = CentimetersToPoints(8)
            .RelativeVerticalPosition = wdRelativeVerticalPositionPage
            .DistanceTop = CentimetersToPoints(0)
            .DistanceBottom = CentimetersToPoints(0)
            .AllowOverlap = False
        End With
    End Sub
    i will translate it in abap. how can i do it.
    i tried something in FORM TABELLE_ERSTELLEN but i can see the table, but i don't get the right position.
    Any idea?
    thanks.
    Regards, Dieter

  • How do you remove the borders from a table item

    In OAF I have a set of data stored in a table that I must display. However, I must make it look like it is not in a table. I can't use a tablelayout because it is a set of records and records are constantly being added. How do I remove the borders and the pagination from the table?

    I think you can't do anything about this.
    Change you design as per Browser Look and Feel standards.
    http://www.oracle.com/technology/tech/blaf/index.html
    --Prasanna                                                                                                                                                                                                                                                                                                                                                       

  • When converting tables in a MS Word 2010 or 2007 to PDF the table borders do not retain the correct thickness as identified in the word document.  Is there a solution for this issue?

    When converting tables in a MS Word 2010 or 2007 to PDF the table borders do not retain the correct thickness as identified in the word document.  Is there a solution for this issue?

    Please try with latest version of MS Word and Acrobat.
    Regards,
    Anoop

  • Why do the table borders in MS Word appear thicker in PDF?

    Hi,
    I am trying to covert a MS Word document to PDF using Adobe Acrobat 6.0 Professional. The word document contains tables with thick (1.5 points) outer border and thin (1 point) cell borders. When I convert this to PDF, all the borders in the tables appear of the same thickness and thicker than what they are in Word.
    I request your kind help in figuring out how to convert it to PDF so that the tables retain the original formatting done in Word.
    System info:
    OS: Wondows XP Professional, Version 2002, Service Pack 2
    Processor: Intel Pentium M (1.70 Ghz)
    Ram: 512 MB
    With many thanks,
    Vinay

    One thing that you might want to try is to change the printer resolution to 300 or 600, rather than the default 1200 dpi. I am working from memory, but it is under the advanced tab I think and you will find a screen that appears to be a list of items. One is the print resolution or such. The default on that is 1200dpi and it is often a source of this problem.
    It may be also that WORD and Acrobat extrapolate for the screen differently. So what you see in WORD may actually not be what is being produced.
    Not sure I much more help to give, but see if that leads you somewhere. If you can't find it, let me know and I will look on my other machine.

  • Ms word tables borders and shading

    I'm using the "word tables borders and shading.vi" and trying to put a border around the first row including between columns and the "inside line style" active x function in the word_set_table_borders.vi is being ignored. The file is attached. Open the library and run the word table.vi. You will have to create test.doc on the root directory on the hard drive. Any suggestions?
    Attachments:
    wordtable.zip ‏1362 KB

    I ran your code and it worked fine. The top row of the table had a darker rectangle around it. I did have problems opening the file and it crashed my LV at first. I suspect there may be a corruption in the binary executable of the VI. Try pressing control-shift-run arrow on your top level VI to force LabVIEW to rebuild the binary executable of the VI.

  • How to remove table cell borders

    Hi,
    I’m using dreamweaver cs6.first i create a HTML page then i create a div tag (800w 900 h) & create a table inside of above div. i want to keep table border & make it to tickness, want to remove cell borders. I can’t find any options to remove the cell borders. Please any one can help me.
    Thank you.

    table.borderless {
    border-width: 0px;
    background-color: white;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    text-transform: none;
    table.borderless th {
        border-width: 0px;
        padding: 5px;
        background-color: white;   
    table.borderless td {
        border-width: 0px;
        padding: 5px;
        background-color: white;
    <table width="250" height="150" align="center" class="borderless">
    <tr>
      <th colspan="2" class="style1">Borderless table<br />
       cell 1 &amp; 2 merged</span> </th>
      </tr>
    <tr>
      <th class="borderless">cell 3 </th>
      <td class="borderless">cell 4 </td>
    </tr>
    <tr>
        <th>cell 5 </th>
        <td>cell 6 </td>
    </tr>
    </table>

  • Convert dotx or docx to pdf with Word Automation Service failed

    Hello everybody,
    After search on the internet, I'm looking for a solution to this issue.
    I wrote this code for a document conversion in a visual studio 2010 workflow:
    string wordAutomationServiceName = "Word Automation Service";
    ConversionJobSettings jobSettings = new ConversionJobSettings();
    jobSettings.OutputFormat = SaveFormat.PDF;
    ConversionJob job = new ConversionJob(wordAutomationServiceName, jobSettings);
    job.UserToken = workflowProperties.Site.UserToken;
    job.AddFile(workflowProperties.WebUrl + "/" + file.Url,
    workflowProperties.WebUrl + "/" + file.Url.Replace(".docx", ".pdf"));
    job.Start();
    URLs are corrects and the word document exists.
    The problem is when the job is executed, I have errors in SharePoint logs:
    11/18/2011 09:24:15.87     w3wp.exe (0x1BC4)                           0x1CA0    Word Automation Services     
        Office Viewing Architecture       9rte    Medium      Request received for document 00000001-0001-10e2-80af-d08c970b9892, format: , numberInQueue: 0, request id ba03fb58-55b2-4c6c-b1ca-20fad3b11585   
    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.87     w3wp.exe (0x1BC4)                           0x1CA0    Word Automation Services     
        Office Viewing Architecture       c7ld    Medium      AppManager.BeginProcessRequest adding request to queue    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.88     w3wp.exe (0x1BC4)                           0x1CA0    Word Automation Services     
        Timer Job                         g27p    Medium      Local Controller '71cf62b9-c34c-46c4-9828-55de2d5f5ac0':
    In Progress: <http://site/Contracts/docsettest/contracttest.dotx> downloaded and queued locally    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.88     w3wp.exe (0x1BC4)                           0x17C0    Word Automation Services     
        Configuration                     g6xc    Medium      Item 00000001-0001-10e2-80af-d08c970b9892: Assigned to
    local worker process: 1D64 (7524; worker id = cce33245-48b9-4b0d-afcd-e3218845d81a)    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.88     w3wp.exe (0x1BC4)                           0x1CA0    SharePoint Foundation        
        Monitoring                        b4ly    Medium      Leaving Monitored Scope (ExecuteWcfServerOperation).
    Execution Time=23.6994391735768    2fd2393d-f36d-49a1-bfdf-737aefc8659a
    11/18/2011 09:24:15.88     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       vipp    Medium      AppWorker:cce33245-48b9-4b0d-afcd-e3218845d81a initializing for request ba03fb58-55b2-4c6c-b1ca-20fad3b11585   
    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.88     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       vipr    Monitorable    AppWorker:cce33245-48b9-4b0d-afcd-e3218845d81a worker call failed System.ServiceModel.CommunicationObjectAbortedException: The
    communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it has been Aborted.    Server stack trace:      at System.ServiceModel.Channels.CommunicationObject.ThrowIfDisposedOrNotOpen()    
    at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage
    methodCall, ProxyOperationRuntime operation)     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown at [0]:      at System.Runtime.Re...   
    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.88*    w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       vipr    Monitorable    ...moting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData&
    msgData, Int32 type)     at Microsoft.Office.Web.Conversion.Framework.Remoting.IAppChannelCallback.Initialize(WorkerRequest request, FileItem fileItem)     at Microsoft.Office.Web.Conversion.Framework.AppWorker.ProcessRequest(ConversionRequest
    request). Worker name WordAutomationServices, Document 00000001-0001-10e2-80af-d08c970b9892    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.88     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Service                           g281    Medium      Local Controller '71cf62b9-c34c-46c4-9828-55de2d5f5ac0':
    Failure: <http://site/Contracts/docsettest/contracttest.dotx> not uploaded to <http://site/Contracts/docsettest/contracttest.pdf> (65543)    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.90     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       c78j    Unexpected    AppWorker:cce33245-48b9-4b0d-afcd-e3218845d81a ProcessRequestDone() received error response WorkerException, restarting the worker   
    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.90     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       b1qa    Medium      Shutting down process with force processId: 7524 belonging to AppWorker cce33245-48b9-4b0d-afcd-e3218845d81a   
    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.91     w3wp.exe (0x1BC4)                           0x1CA0    Word Automation Services     
        Configuration                     g6xb    Medium      Local Controller '71cf62b9-c34c-46c4-9828-55de2d5f5ac0':
    Local worker process exited: 1D64 (7524); exit time = 11/18/2011 09:24:15     
    11/18/2011 09:24:15.91     w3wp.exe (0x1BC4)                           0x1CA0    Word Automation Services     
        Configuration                     d0md    Medium      App 'Word Automation Service': Deleting temp directory
    'C:\Windows\TEMP\wdsrv\21659d2e-c634-46a2-9585-b4cd1398f64c\odsibdmm.cmv\1D64'     
    11/18/2011 09:24:15.92     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       xpre    Medium      Removing worker cce33245-48b9-4b0d-afcd-e3218845d81a, thread: 216    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.92     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       f2yg    Medium      CreateSandBoxedProcessWorker() is called    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.93     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       b10e    Medium      Created desktop: Service-0x0-3eaf55d$\Microsoft Office Isolated Environment     00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.93     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       2brt    Medium      AppWorker:89d80fff-43ec-459e-9d95-5ed8b67f20bb worker process is started Exe: WordServerWorker.exe Args: /id 89d80fff-43ec-459e-9d95-5ed8b67f20bb
    /convertingService net.pipe://127.0.0.1/WordServer71cf62b9-c34c-46c4-9828-55de2d5f5ac0 /assembly WdsrvWorker.dll /type WACWS /IsBatchedTracing True /LogQuota 100 WorkerType: WorkerType1 Directory: c:\windows\system32\inetsrv, pid : 3700, IsSandBoxed: True,
    UniqueSandBoxSid: S-1-5-26473-19571-45394-48    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.93     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       vioz    Medium      RemoveWorker isRemoved: True session id : uuid:c9cce13b-5285-47d6-a666-29da19e57c67;id=47, Guid: cce33245-48b9-4b0d-afcd-e3218845d81a   
    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.93     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       b4em    Monitorable    AppWorker:cce33245-48b9-4b0d-afcd-e3218845d81a recycle worker process because the conversion failed with result WorkerException.
    Worker is WordAutomationServices    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.93     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       xpre    Medium      Removing worker cce33245-48b9-4b0d-afcd-e3218845d81a, thread: 216    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.93     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       vioz    Medium      RemoveWorker isRemoved: False session id : uuid:c9cce13b-5285-47d6-a666-29da19e57c67;id=47, Guid: cce33245-48b9-4b0d-afcd-e3218845d81a   
    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.93     w3wp.exe (0x1BC4)                           0x211C    Word Automation Services     
        Office Viewing Architecture       a2oj    Medium      PreProcessTime = 0; InConversionQueueTime = 0.0019142; ResponseTime = 0.0066997; TotalConversionTime = 0.0535976; AvgPreProcessTime
    = 0; AvgInConversionQueueTime = 0; AvgResponseTime = 0; AvgTotalConversionTime = 0; historyCount = 0; result = WorkerException; format = n/a    00000001-0001-10e2-80af-d08c970b9892
    11/18/2011 09:24:15.93     w3wp.exe (0x1BC4)                           0x144C    Word Automation Services     
        Office Viewing Architecture       4sig    Medium      ChildProcess WordServerWorker.exe is launched inside worker 89d80fff-43ec-459e-9d95-5ed8b67f20bb. Pid 3700   
    11/18/2011 09:24:15.93     w3wp.exe (0x1BC4)                           0x144C    Word Automation Services     
        Office Viewing Architecture       d9hn    Medium      NotifyNewChildProcessInWorker has seen WordServerWorker.exe in worker 89d80fff-43ec-459e-9d95-5ed8b67f20bb   
    11/18/2011 09:24:16.45     w3wp.exe (0x1BC4)                           0x18CC    Word Automation Services     
        Office Viewing Architecture       viou    Medium      ... registering worker 89d80fff-43ec-459e-9d95-5ed8b67f20bb     
    11/18/2011 09:24:16.48     w3wp.exe (0x1BC4)                           0x18CC    Word Automation Services     
        Office Viewing Architecture       viox    Medium      Worker 89d80fff-43ec-459e-9d95-5ed8b67f20bb is now initialized.     
    11/18/2011 09:24:16.55     w3wp.exe (0x1BC4)                           0x18CC    Word Automation Services     
        Office Viewing Architecture       vipx    Monitorable    AppWorker:89d80fff-43ec-459e-9d95-5ed8b67f20bb application server host exited unexpectedly  (thread: 6)   
    11/18/2011 09:24:16.55     w3wp.exe (0x1BC4)                           0x18CC    Word Automation Services     
        Office Viewing Architecture       c78j    Unexpected    AppWorker:89d80fff-43ec-459e-9d95-5ed8b67f20bb ProcessRequestDone() received error response WorkerCrashed, restarting the worker   
    11/18/2011 09:24:16.57     w3wp.exe (0x1BC4)                           0x18CC    Word Automation Services     
        Office Viewing Architecture       xpre    Medium      Removing worker 89d80fff-43ec-459e-9d95-5ed8b67f20bb, thread: 6     
    11/18/2011 09:24:16.57     w3wp.exe (0x1BC4)                           0x18CC    Word Automation Services     
        Office Viewing Architecture       f2yg    Medium      CreateSandBoxedProcessWorker() is called     
    11/18/2011 09:24:16.57     w3wp.exe (0x1BC4)                           0x18CC    Word Automation Services     
        Office Viewing Architecture       b10e    Medium      Created desktop: Service-0x0-3eb1722$\Microsoft Office Isolated Environment      
    11/18/2011 09:24:16.57     w3wp.exe (0x1BC4)                           0x18CC    Word Automation Services     
        Office Viewing Architecture       2brt    Medium      AppWorker:59168d75-7086-4318-8d12-633affa7b783 worker process is started Exe: WordServerWorker.exe Args: /id 59168d75-7086-4318-8d12-633affa7b783
    /convertingService net.pipe://127.0.0.1/WordServer71cf62b9-c34c-46c4-9828-55de2d5f5ac0 /assembly WdsrvWorker.dll /type WACWS /IsBatchedTracing True /LogQuota 100 WorkerType: WorkerType1 Directory: c:\windows\system32\inetsrv, pid : 6752, IsSandBoxed: True,
    UniqueSandBoxSid: S-1-5-26473-19571-45394-49     
    11/18/2011 09:24:16.57     w3wp.exe (0x1BC4)                           0x18CC    Word Automation Services     
        Office Viewing Architecture       vioz    Medium      RemoveWorker isRemoved: True session id : uuid:c9cce13b-5285-47d6-a666-29da19e57c67;id=48, Guid: 89d80fff-43ec-459e-9d95-5ed8b67f20bb   
    11/18/2011 09:24:16.57     w3wp.exe (0x1BC4)                           0x144C    Word Automation Services     
        Office Viewing Architecture       4sig    Medium      ChildProcess WordServerWorker.exe is launched inside worker 59168d75-7086-4318-8d12-633affa7b783. Pid 6752   
    11/18/2011 09:24:16.57     w3wp.exe (0x1BC4)                           0x144C    Word Automation Services     
        Office Viewing Architecture       d9hn    Medium      NotifyNewChildProcessInWorker has seen WordServerWorker.exe in worker 59168d75-7086-4318-8d12-633affa7b783   
    11/18/2011 09:24:17.10     w3wp.exe (0x1BC4)                           0x1CA0    Word Automation Services     
        Office Viewing Architecture       viou    Medium      ... registering worker 59168d75-7086-4318-8d12-633affa7b783     
    11/18/2011 09:24:17.13     w3wp.exe (0x1BC4)                           0x1CA0    Word Automation Services     
        Office Viewing Architecture       viox    Medium      Worker 59168d75-7086-4318-8d12-633affa7b783 is now initialized.   
    Thank you for your help.

    Hi Jean,
    Were you able to resolve this?  I am coming across the exact same error on a SharePoint 2010 development machine.  I don't see any other posts on the web about it.  Here is the entry from my ULS logs:
    Local Controller 'fc8b8704-f0f1-4e85-a69a-dc5686c27e39': Failure: <http://ip-0a6ee272/Shared%20Documents/Word/hello.docx> not uploaded to <http://ip-0a6ee272/Shared%20Documents/PDF/hello.pdf>
    (65543)
    Do we share any of the following configuration points?  I'm trying to narrow down the potential root cause ...
    MSDN subscriber EXE install media "SharePoint Server 2010 with Service Pack 1 (x64) - (English)"
    SP1 slipstream patch level.  No cumulative updates.
    http://autospinstaller.codeplex.com/  PowerShell scripted install
    SQL 2008 R2 installed on same box as SharePoint
    Active Directory domain controller on same box as SharePoint
    c:\Windows\System32\drivers\etc\HOSTS file 127.0.0.1 entry for both machine and domain name
    Thanks in advance for the research. 
    I've actually tried re-installing SharePoint several times on brand new virtual machines.  That did not resolve the issue.  Strangely enough, the RTM version of SharePoint appears to work just fine.  With all other configuration points the
    same, I loaded RTM ... ran a Word Automation PowerShell script ... and received the expected PDF output.  Then when I apply the SP1 patch ... it stops working and I get error 65543.
    Best,
      @SPJeff

  • Table borders offset in PDF output

    I am using RoboHelp HTML, version 9 and I need to deliver two outputs for my documentation: WebHelp and PDF.
    My table borders look the way I want them to in WebHelp and Word, single line and thin (1px).
    But when we go to PDF, I get two sets of lines, one all the way around my cells, another with gaps of white space.
    I think its something to do with 3d borders not getting totally eliminated.
    I've added "table-collapse: collapse;" to all my table styles.
    Any ideas?
    Note: If I create a table originally in Word with thin single line borders, it looks fine in PDF.
    Here's how it looks in WebHelp and Word...
    And then in PDF...

    Peter,
    Yes, as I mentioned in an earlier post, I really like the help design on your web site. I researched many looks in preparing for a new stylesheet project. Ended up emulating a lot of your elements rather than reinvent the wheel.
    Hope you are OK with that. Imitation is the sincerest form of flattery (definitely in my case).
    Anyhow, I figured out my problem. The CSS for my original tables was using 5px padding all around. In Word output, this gets converted to table cell margins.
    And that's what the PDF conversion doesn't like. Take out the original CSS padding--or the converted Word cell margins--and the problem goes away, leaving clean unbroken table lines in the PDF.
    Best regards.

  • Poor Quality Table borders in PDF

    Hello.
    I am having problems having the tables borders in Word 2007 look the same in the PDF (using Arobat 9 Pro). The quality is very poor which appears the lines are thicker than in the Word document. I am using 4000 DPI, High Quality print but still looks bad.   Images look good it is just the table borders that are the problem.  Do you have any suggestion in improving this? Or is this a problem I have to live with?
    Regards,
    Len

    Converting Word (table) to pdf - lines screwed up - googled as far back as 2004.
    BUG STILL exists. HELP/FIX PLEASE? 
    http://www.pcreview.co.uk/forums/missing-table-lines-conversion-pdf-t878406.html 
    http://forums.adobe.com/thread/305508 
    Trying to convert any word doc with tables (& shading) to PDF 
    - basic table, black borders throughout 
    - shaded headings, black outline border 
    - shaded subheadings, black outline border 
    However when convert to PDF: 
    - 'displays' NO top cell border for some/all shaded rows 
    - shows diff thickness lines 
    - each conversion, diff lines missing/incorrectly sized 
    - however converted pdf prints perfectly fine 
    Adobe know about the bug, per PRMW's (Paul's) post on 2009-07-15  15:44:34, however only offered a painful time consuming workaround using  non-freeware Adobe Pro: 
    http://acrobatusers.com/forum/pdf-creation/word-pdf-table-lines-missing-or-faded#comment-7 8139 
    - "It is not feasable to edit 200+ tables in the PDF every time the PDF is generated, as we maintain the original in word. 
    - "This complete issue seems to have been passed off by Adobe as no  problem and that there is a work around. I consider this an  unsatisfactory response from a major product supplier. 
    Microsoft TechNet & NitroPdf said it's an Adobe issue & to contact Adobe to fix the bug. 
    Tried, but proble exists: 
    * Word 2010 > File  > Save & Send > Create PDF/XPS Document 
    * Word 2010 > Save As > Pdf 
    * Word 2010 > Print > PrimoPdf  (even tried properties > advanced > dpi 300/600/2400) > Custom 
    * Word 2010 > Print > doPDF v7  (even tried 'high quality images) 
    * Word 2010 > Print > PDFCreator 
    * Word 2010 > Print > CutePdf Writer      (even worse) 
    * Nitro Pdf Reader  > Convert From File > (even worse) 
    * www.pdfonline.com > Word to Pdf         (even worse) 
    * www.wordtopdf.com > email: Sorry, an unexpected conversion failure occurred when converting your file. 
    Software: 
    * Word 2010 - tried with .docx & .doc (97 to 2003) 
    * Adobe Reader 8.2.6 (freeware), then upgraded to Adobe Reader X 10.0.1 (freeware) 
    * GhostScript 9.01 w32 (freeware) 
    * CutePdf Writer (freeware) 
    * PrimoPdf (freeware) 
    * Nitro Pdf Reader 1.4.0.11 (freeware) 
    * doPDF 7.2.361 (freeware) 
    * PDFCreator 1.2.0 (opensource - www.pdfforge.org) 
    Seems to display better at 300%, but lines still not right (even at 2400%), but who views pdf's at this zoom? 
    Message was edited by: shell_l_d

  • Formating Bold Table Borders in a report template

    I'm using the Alternating-Color-Rows template in my reports. Is it possible to group columns together using thicker table borders after specific columns. How would you set this up in the template? e.g.
    | | || | | || | | ||
    | | || | | || | | ||
    | | || | | || | | ||
    etc...
    Paul P

    You do NOT save formatting to a CLOB type column, hence the C lob (Character). If you want to save a Word style document to a column, then look at a Blob (Binary)..
    Thank you,
    Tony Miller
    Webster, TX
    What if you really were stalking a paranoid schizophrenic... Would they know?

  • Prevent IC user drag table borders in Assignment

    How can I prevent that an incopy user is able to 'drag' table borders within an assignment/?
    I want the user to edit table text and figures but not to edit the layout/size of the table cells.

    To prevent ctrl-c /v /x modify the InputMap (and ActionMap) associated with the JTable.
    Look at SwingUtilities.getUIActionMap(...), SwingUtilities.getUIInputMap(...)
    InputMap map = SwingUtilities.getUIInputMap(myTable,1);
    mapi.remove(KeyStroke.getKeyStroke(KeyEvent.VK_C,InputEvent.CTRL_MASK ));This code remove the ctrl-c for the specified component (myTable).
    I hope this helps,
    Denis

  • How do I Format Table Borders in Header DW-CS5

    I am building a website with DWCS5 and I can not find where to format the borders of the tables in my header.
    The page is here
    http://www.bountifulspinweave.com/aaaa_copy.htm
    Any guidance would be appreciated.
    Thank you in advance,
    Lois

    First you would remove  'border="10"  from the html table code. Then you would add some css to style ALL the table borders inside the .header1 <div>:
    <style type="text/css">
    .header1 table {
      border: 10px solid #0C3;
    </style>
    Below is the complete html code and css:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    .header1 table {
    border: 10px solid #0C3;
    }</style>
    </head>
    <body>
    <div class="header1">
    <table width="963" height="260">
            <tr>
              <td width="935" height="236" bgcolor="#680080"> <table width="915" height="196">
                <tr>
                  <td width="156" height="172" bgcolor="#680080"><a href="logo-ft.gif"> <img src="_borders/bountiful_logo.jpg" alt="Bountiful Logo" width="152" height="155" align="absmiddle" /></a></td>
                  <td width="725"><table width="723" border="0">
                    <tr>
                      <td width="657" height="43" bgcolor="#d2b3d1">BOUNTIFUL</td>
                    </tr>
                    <tr>
                      <td bgcolor="#d2b3d1">Your Wheel and Loom Specialists since 1988</td>
                    </tr>
                    <tr>
                      <td bgcolor="#d2b3d1">Celebrating 23 years of unparalled customer service</td>
                    </tr>
                    <tr>
                      <td height="37" bgcolor="#d2b3d1">Toll Free: 877-586-9332 from 8am to 8pm MST</td>
                    </tr>
                  </table></td>
                </tr>
              </table></td>
            </tr>
          </table>
          </div>
    </body>
    </html>

  • Retaining format of table borders of Help done in Robohelp 7 into RoboHelp 9

    Does anyone know how to import or retain the properties of table borders/cells of a Compiled HTML Help Module that was generated in RoboHelp 7 into RoboHelp 9? I'm using RoboHelp 9 for my work and have to generate an HTML Help using RoboHelp 9. But the previous Help was generated in RoboHelp 7. When I have to generate the new Help in RoboHelp 9, this RoboHelp doesn't have the same properties of the table borders of the previous Help. Please help.

    I'm still not sure about what you are using and were using in Rh7. Rh for Word has an HPJ file to open it, Rh HTML has an XPJ file. They are different from an HHP file which is also a Rh HTML file.
    Both generate CHMs so once we are certain about that Rh HTML is what your Rh7 project was in, we can deal with the table problem.
    If Rh for Word is what is in use, then it should not have changed. In Rh HTML tables are now CSS driven but your old ones should not have been affected. Let's cover that when we are certain of the version of Rh the project is in.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for

  • How to use pre-defined scenarios for RosettaNet with XI 3.0

    Hi all.    I am working in Comgroup Shanghai co. ltd. which is partner of SAP China.    We have a potential customer who use RosettaNet as their Supply Chain EDI system.    I would like to make a demo for demostrate the pre-defined scenarios for Rose

  • How to create a view based on Lookup Column?

    Hi All, I am working as a SharePoint developer 2013. When i tried to create a view based on look up column it is not showing lookup column. How to fix this problem? Please help me out here. Thanks & Regards, Santhoshi

  • How can I force a Word document to be routed immediately from Word

    When using Word to create and save a document to SharePoint Library that is using Content Organizer (Drop Off Library), Word displays a common Routing information status, and also asks you to check in a document if check out is enabled. My question i

  • From single piece to bulk box

    Hi Guys,   We work in AFS .Here my scenairo is that first we will producing single piece and then converting it into bulk box pack. I have done the MRP run and generated the requirements for both the bulk box and single piece . And use single piece j

  • ABAP Dynamic

    HI, I am new to ABAP objects.. can anyone explain me what is ABAP Dynamic? any study material for ABAP objects also Regards Giri