Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Page Layout / March 2007

Tip: Looking for answers? Try searching our database.

Creating a 3-column section style

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Carygee - 11 Mar 2007 12:14 GMT
I often create sections within a document that have three equal-sized
columns with custome small gutters etc. It's a bore to do this time and
time again.

How can I set up a section style which will contain paragraph and column
spacing settings etc.? Can one also add, say, auto hyphenation to this
style?
Graham Mayor - 11 Mar 2007 13:06 GMT
You can't create a 'style' as such, but you could store your preferences in
a macro to apply the section break, columns and hyphenation eg

Sub ThreeCols()
Dim sView As String
sView = ActiveWindow.View
       ActiveWindow.View.Type = wdPrintView
   Selection.InsertBreak Type:=wdSectionBreakContinuous
   With Selection.PageSetup.TextColumns
       .SetCount NumColumns:=3
       .EvenlySpaced = False
       .LineBetween = False
       .Width = CentimetersToPoints(3.55)
       .Spacing = CentimetersToPoints(1)
   End With
   ActiveDocument.AutoHyphenation = True
   ActiveWindow.View = sView
End Sub

http://www.gmayor.com/installing_macro.htm

The width of the columns and the spacing between them can be set to match
your preferences.

Signature

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor -  Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

> I often create sections within a document that have three equal-sized
> columns with custome small gutters etc. It's a bore to do this time
[quoted text clipped - 3 lines]
> column spacing settings etc.? Can one also add, say, auto hyphenation
> to this style?
Carygee - 11 Mar 2007 15:06 GMT
Thanks loads. And I learned a lot in the process. I also had to adapt it
to Word 2007 norms (Took ages to find and install the "Developer" tab).

Unfortunately, I couldn't save the macro "due to a file permission
error" whatever this means. (Oh please don't tell me this is a revival
of the Live One Care bug)

> You can't create a 'style' as such, but you could store your preferences in
> a macro to apply the section break, columns and hyphenation eg
[quoted text clipped - 19 lines]
> The width of the columns and the spacing between them can be set to match
> your preferences.
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.