Reply
 
Thread Tools Display Modes
  #1   Report Post  
Klaus Linke
 
Posts: n/a
Default

Hi David,

It's probably mentioned in the article Suzanne gave you, but ...
You can set all tables to fixed width, so Word doesn't constantly run the
background task that tries to optimize column widths:

Dim myTable As Table
For Each myTable In ActiveDocument.Tables
myTable.AutoFitBehavior (wdAutoFitFixed)
myTable.AllowAutoFit = False ' might be redundant?
Next myTable

The tables won't change automatically any more, though.
You could write a macro that adjusts the tables "on demand" the way you want
and ends up with fixed column widths.
I use often something like:

Dim myTable As Table
For Each myTable In ActiveDocument.Tables
myTable.AutoFitBehavior (wdAutoFitContent)
ActiveDocument.Repaginate
myTable.AutoFitBehavior (wdAutoFitWindow)
ActiveDocument.Repaginate
myTable.AutoFitBehavior (wdAutoFitFixed)
myTable.AllowAutoFit = False
Next myTable

Regards,
Klaus



"David" wrote:
Thank You all for your help.

David

"Jean-Guy Marcil" wrote:

David was telling us:
David nous racontait que :

Hello Suzanne, that kind of article is exactly what I need. Thank You.

I looked in Tols Options General and my "Background repagination"
is greyed out witha check. I am running Word 2002 am I wonder if that
is a setting I can't change, or I need to change one thing to get the
greyed box available.


This option is not available in Page Layout view. Here is what the help
has
to say about that option:

"Background repagination Repaginates documents automatically as you
work.
This option is unavailable when you use page layout view because it works
automatically in that mode and you can't turn it off. "

Generally speaking, if you are concerned with display speed while
working,
it is better to work in Normal view and switch to print layout only at
the
end to fine tune the lay out.

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
ISTOO
Word MVP site:
http://www.word.mvps.org





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
CPU Usage When working with a Template I Created KM1 Microsoft Word Help 6 May 24th 05 04:38 PM
CPU Usage When Working with Templates you created KM1 Microsoft Word Help 3 May 21st 05 11:57 PM
When joining tables, table sections shift left or right. JEB01 Tables 1 January 17th 05 07:57 PM
Merging tables in Word 2003 JoanN Microsoft Word Help 3 December 21st 04 06:35 PM
Is there a way to "join" tables in Word 2003? Julian Turner Tables 3 October 28th 04 06:51 PM


All times are GMT +1. The time now is 02:50 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"