Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
[email protected] lauralevern123@yahoo.co.uk is offline
external usenet poster
 
Posts: 4
Default MS-Word table borders problems - edges not lining up (esp. in PDF) - Is MS-Word up to it?

I consider myself as an advanced Word user and I'm looking to automate
certain documents - but I'm running into problems when using Word
Tables - and now I'm not sure Word's output quality is up to the job.

I've created a simple three row table in MS-Word 2003 which I then
select and setup with a colored background of green and some internal
borders of red.

When you "Hide Gridlines" you can see some suspect right edge to the
borders - the right of the table is not in a straight line - with
nicks missing on the right side of the borders.

This gets worse when you turn the document into PDF (I've tried two
PDF converters to confirm that it's not the PDF converter that's at
fault). In the resulting PDFs, both the left and right sides of the
border lines are indented from the left and right edges of the green
table.

The problems only seem to get worse when you continue to apply
additional borders or play with the Table Properties Cell Margins.
I must use PDF to deliver my documents - but these edges problems are
just not acceptable.

Is there a way around this? Or is MS-Word just not up to the job when
dealing with high-end quality production.

Any assistance would be invaluable at this point.
Many thanks
Lorts

  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default MS-Word table borders problems - edges not lining up (esp. in PDF) - Is MS-Word up to it?

How are you creating the green background? Have you confirmed that the table
rows are of equal widths? It is possible to drag cell boundaries for a
single row and entirely too easy to do this inadvertently.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

wrote in message
oups.com...
I consider myself as an advanced Word user and I'm looking to automate
certain documents - but I'm running into problems when using Word
Tables - and now I'm not sure Word's output quality is up to the job.

I've created a simple three row table in MS-Word 2003 which I then
select and setup with a colored background of green and some internal
borders of red.

When you "Hide Gridlines" you can see some suspect right edge to the
borders - the right of the table is not in a straight line - with
nicks missing on the right side of the borders.

This gets worse when you turn the document into PDF (I've tried two
PDF converters to confirm that it's not the PDF converter that's at
fault). In the resulting PDFs, both the left and right sides of the
border lines are indented from the left and right edges of the green
table.

The problems only seem to get worse when you continue to apply
additional borders or play with the Table Properties Cell Margins.
I must use PDF to deliver my documents - but these edges problems are
just not acceptable.

Is there a way around this? Or is MS-Word just not up to the job when
dealing with high-end quality production.

Any assistance would be invaluable at this point.
Many thanks
Lorts


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
[email protected] lauralevern123@yahoo.co.uk is offline
external usenet poster
 
Posts: 4
Default MS-Word table borders problems - edges not lining up (esp. in PDF) - Is MS-Word up to it?

I've recorded this VBA macro to demonstrate the table build process
(no more than clicking on the Table toolbar icon to build a 3 row
table - then onto the Format.Borders and Shading to color the
background and add the borders).



{{{
Sub CreateTable()
'
' CreateTable Macro
' Macro recorded 5/15/2007
'
ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=3,
NumColumns:= _
1, DefaultTableBehavior:=wdWord9TableBehavior,
AutoFitBehavior:= _
wdAutoFitFixed
With Selection.Tables(1)
If .Style "Table Grid" Then
.Style = "Table Grid"
End If
.ApplyStyleHeadingRows = True
.ApplyStyleLastRow = True
.ApplyStyleFirstColumn = True
.ApplyStyleLastColumn = True
End With
ActiveWindow.ActivePane.View.Zoom.Percentage = 75
With Selection.Tables(1)
With .Shading
.Texture = wdTextureNone
.ForegroundPatternColor = wdColorAutomatic
.BackgroundPatternColor = wdColorLime
End With
.Borders(wdBorderLeft).LineStyle = wdLineStyleNone
.Borders(wdBorderRight).LineStyle = wdLineStyleNone
.Borders(wdBorderTop).LineStyle = wdLineStyleNone
.Borders(wdBorderBottom).LineStyle = wdLineStyleNone
With .Borders(wdBorderHorizontal)
.LineStyle = wdLineStyleSingle
.LineWidth = wdLineWidth050pt
.Color = wdColorAutomatic
End With
.Borders(wdBorderDiagonalDown).LineStyle = wdLineStyleNone
.Borders(wdBorderDiagonalUp).LineStyle = wdLineStyleNone
.Borders.Shadow = False
End With
With Options
.DefaultBorderLineStyle = wdLineStyleSingle
.DefaultBorderLineWidth = wdLineWidth050pt
.DefaultBorderColor = wdColorAutomatic
End With
End Sub
}}}

Any thoughts?
Thanks (in advance)

  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Tony Jollans Tony Jollans is offline
external usenet poster
 
Posts: 1,308
Default MS-Word table borders problems - edges not lining up (esp. in PDF) - Is MS-Word up to it?

It is the case that some slightly odd effects can occur if you have a mix of
border styles but I see no problems with the result of running your code -
either in Word itself or PDF output from it (using Word 2007) - and wouldn't
expect to. Even at maximum magnification (500 in Word, 1600 in PDF) all the
lines are dead straight.

--
Enjoy,

Tony Jollans
Microsoft Word MVP

wrote in message
ups.com...
I've recorded this VBA macro to demonstrate the table build process
(no more than clicking on the Table toolbar icon to build a 3 row
table - then onto the Format.Borders and Shading to color the
background and add the borders).



{{{
Sub CreateTable()
'
' CreateTable Macro
' Macro recorded 5/15/2007
'
ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=3,
NumColumns:= _
1, DefaultTableBehavior:=wdWord9TableBehavior,
AutoFitBehavior:= _
wdAutoFitFixed
With Selection.Tables(1)
If .Style "Table Grid" Then
.Style = "Table Grid"
End If
.ApplyStyleHeadingRows = True
.ApplyStyleLastRow = True
.ApplyStyleFirstColumn = True
.ApplyStyleLastColumn = True
End With
ActiveWindow.ActivePane.View.Zoom.Percentage = 75
With Selection.Tables(1)
With .Shading
.Texture = wdTextureNone
.ForegroundPatternColor = wdColorAutomatic
.BackgroundPatternColor = wdColorLime
End With
.Borders(wdBorderLeft).LineStyle = wdLineStyleNone
.Borders(wdBorderRight).LineStyle = wdLineStyleNone
.Borders(wdBorderTop).LineStyle = wdLineStyleNone
.Borders(wdBorderBottom).LineStyle = wdLineStyleNone
With .Borders(wdBorderHorizontal)
.LineStyle = wdLineStyleSingle
.LineWidth = wdLineWidth050pt
.Color = wdColorAutomatic
End With
.Borders(wdBorderDiagonalDown).LineStyle = wdLineStyleNone
.Borders(wdBorderDiagonalUp).LineStyle = wdLineStyleNone
.Borders.Shadow = False
End With
With Options
.DefaultBorderLineStyle = wdLineStyleSingle
.DefaultBorderLineWidth = wdLineWidth050pt
.DefaultBorderColor = wdColorAutomatic
End With
End Sub
}}}

Any thoughts?
Thanks (in advance)



  #5   Report Post  
Posted to microsoft.public.word.docmanagement
[email protected] lauralevern123@yahoo.co.uk is offline
external usenet poster
 
Posts: 4
Default MS-Word table borders problems - edges not lining up (esp. in PDF) - Is MS-Word up to it?

On 15 May, 22:13, "Tony Jollans" My forename at my surname dot com
wrote:
It is the case that some slightly odd effects can occur if you have a mix ofborderstyles but I see noproblemswith the result of running your code -
either inWorditself or PDF output from it (usingWord2007) - and wouldn't
expect to. Even at maximum magnification (500 inWord, 1600 in PDF) all the
lines are dead straight.

--
Enjoy,

Tony Jollans
MicrosoftWordMVP

wrote in message

ups.com...



I've recorded this VBA macro to demonstrate the table build process
(no more than clicking on the Table toolbar icon to build a 3 row
table - then onto the Format.Borders and Shading to color the
background and add the borders).


{{{
Sub CreateTable()
'
' CreateTable Macro
' Macro recorded 5/15/2007
'
ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=3,
NumColumns:= _
1, DefaultTableBehavior:=wdWord9TableBehavior,
AutoFitBehavior:= _
wdAutoFitFixed
With Selection.Tables(1)
If .Style "Table Grid" Then
.Style = "Table Grid"
End If
.ApplyStyleHeadingRows = True
.ApplyStyleLastRow = True
.ApplyStyleFirstColumn = True
.ApplyStyleLastColumn = True
End With
ActiveWindow.ActivePane.View.Zoom.Percentage = 75
With Selection.Tables(1)
With .Shading
.Texture = wdTextureNone
.ForegroundPatternColor = wdColorAutomatic
.BackgroundPatternColor = wdColorLime
End With
.Borders(wdBorderLeft).LineStyle = wdLineStyleNone
.Borders(wdBorderRight).LineStyle = wdLineStyleNone
.Borders(wdBorderTop).LineStyle = wdLineStyleNone
.Borders(wdBorderBottom).LineStyle = wdLineStyleNone
With .Borders(wdBorderHorizontal)
.LineStyle = wdLineStyleSingle
.LineWidth = wdLineWidth050pt
.Color = wdColorAutomatic
End With
.Borders(wdBorderDiagonalDown).LineStyle = wdLineStyleNone
.Borders(wdBorderDiagonalUp).LineStyle = wdLineStyleNone
.Borders.Shadow = False
End With
With Options
.DefaultBorderLineStyle = wdLineStyleSingle
.DefaultBorderLineWidth = wdLineWidth050pt
.DefaultBorderColor = wdColorAutomatic
End With
End Sub
}}}


Any thoughts?
Thanks (in advance)- Hide quoted text -


- Show quoted text -


Sorry - did I mention ... this is running in Word2003 (I don't have
access to 2007)



  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Tony Jollans Tony Jollans is offline
external usenet poster
 
Posts: 1,308
Default MS-Word table borders problems - edges not lining up (esp. in PDF) - Is MS-Word up to it?

Sorry - did I mention ... this is running in Word2003 (I don't have
access to 2007)


Yes, it does seem as though you have a problem in Word 2003. I do not think
there is a sensible solution. Sorry.

--
Enjoy,

Tony Jollans
Microsoft Word MVP


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
problem grabbing table edges Keith G Hicks Page Layout 2 October 30th 06 03:12 PM
Problems printing table borders to PDF [email protected] Tables 0 August 10th 06 03:02 PM
Can I change Word 2003 red lining to Word 2000 red lining? bob_s Microsoft Word Help 2 March 3rd 06 10:50 PM
How do I set the spacing for the top and bottom edges of a table . Johann Microsoft Word Help 1 March 1st 06 02:56 AM
Lining up by the decimal point in a table of merged fields Michele Mailmerge 3 February 2nd 06 08:44 PM


All times are GMT +1. The time now is 12:04 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"