Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.pagelayout
LarryG LarryG is offline
external usenet poster
 
Posts: 9
Default How can I change default indent and tab spacing

I want to set the default indent and also the default tab spacing - any help
would be appreciated

Email to

many thanks in advance

Larry
  #2   Report Post  
Posted to microsoft.public.word.pagelayout
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default How can I change default indent and tab spacing

See the response(s) in your other thread.

--
Stefan Blom
Microsoft Word MVP


"LarryG" wrote in message
...
I want to set the default indent and also the default tab spacing - any
help
would be appreciated

Email to

many thanks in advance

Larry



  #3   Report Post  
Posted to microsoft.public.word.pagelayout
LarryG LarryG is offline
external usenet poster
 
Posts: 9
Default How can I change default indent and tab spacing

I don't see a response in the other thread - Sorry it got posted twice -
first time attempting to use the forumn

"Stefan Blom" wrote:

See the response(s) in your other thread.

--
Stefan Blom
Microsoft Word MVP


"LarryG" wrote in message
...
I want to set the default indent and also the default tab spacing - any
help
would be appreciated

Email to

many thanks in advance

Larry




  #4   Report Post  
Posted to microsoft.public.word.pagelayout
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default How can I change default indent and tab spacing

OK, the web interface can be difficult to navigate. :-) I'll just repeat my
reply in this thread:

To change the indent settings: Press Ctrl+Alt+Shift+S. In the Styles task
pane, click the Manage Styles button. On the Set Defaults tab, make the
desired changes. Click "New documents based on this template" and then click
OK. If/when you are prompted to save your template, choose to do so.

To change the default tabs for a document, use the Tabs dialog box. (For
easy access, you may want to add the Tabs command to the Quick Access
Toolbar, via Office button | Word Options, Customize category).

To change the default tabs for all documents, open the normal.dotm template
as a file (search for it in Windows, then right-click its icon and click the
Open command). Set the desired default tab stops in the Tabs dialog box, and
click OK. Save and close normal.dotm. But see
http://word.mvps.org/faqs/formatting/SettingTabs.htm, which explains why you
should be using custom tab stops instead of the default ones.

--
Stefan Blom
Microsoft Word MVP


"LarryG" wrote in message
...
I don't see a response in the other thread - Sorry it got posted twice -
first time attempting to use the forumn

"Stefan Blom" wrote:

See the response(s) in your other thread.

--
Stefan Blom
Microsoft Word MVP


"LarryG" wrote in message
...
I want to set the default indent and also the default tab spacing - any
help
would be appreciated

Email to

many thanks in advance

Larry










  #5   Report Post  
Posted to microsoft.public.word.pagelayout
LarryG LarryG is offline
external usenet poster
 
Posts: 9
Default How can I change default indent and tab spacing

Hi Stephan - I got as far as the opening the manage style buttons - but don't
see where the defaut indent measurement is or where to change it.
When in word and I use the indent command it looks like it's .5" and what I
want to do is make it .25" per click
- thank you for your patience.

Larry




"Stefan Blom" wrote:

OK, the web interface can be difficult to navigate. :-) I'll just repeat my
reply in this thread:

To change the indent settings: Press Ctrl+Alt+Shift+S. In the Styles task
pane, click the Manage Styles button. On the Set Defaults tab, make the
desired changes. Click "New documents based on this template" and then click
OK. If/when you are prompted to save your template, choose to do so.

To change the default tabs for a document, use the Tabs dialog box. (For
easy access, you may want to add the Tabs command to the Quick Access
Toolbar, via Office button | Word Options, Customize category).

To change the default tabs for all documents, open the normal.dotm template
as a file (search for it in Windows, then right-click its icon and click the
Open command). Set the desired default tab stops in the Tabs dialog box, and
click OK. Save and close normal.dotm. But see
http://word.mvps.org/faqs/formatting/SettingTabs.htm, which explains why you
should be using custom tab stops instead of the default ones.

--
Stefan Blom
Microsoft Word MVP


"LarryG" wrote in message
...
I don't see a response in the other thread - Sorry it got posted twice -
first time attempting to use the forumn

"Stefan Blom" wrote:

See the response(s) in your other thread.

--
Stefan Blom
Microsoft Word MVP


"LarryG" wrote in message
...
I want to set the default indent and also the default tab spacing - any
help
would be appreciated

Email to

many thanks in advance

Larry












  #6   Report Post  
Posted to microsoft.public.word.pagelayout
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default How can I change default indent and tab spacing

OK, I misunderstood your question. You want to modify the default
*increment* when using the Increase Indent (or Decrease Indent) command.
This can be done rather easily with the following macros (put them in
normal.dotm or in an add-in):

Sub IncreaseIndent()
On Error Resume Next
Selection.ParagraphFormat.LeftIndent = _
Selection.ParagraphFormat.LeftIndent + 18
End Sub

Sub DecreaseIndent()
On Error Resume Next
Selection.ParagraphFormat.LeftIndent = _
Selection.ParagraphFormat.LeftIndent - 18
End Sub

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

Note, however, that the above macros disable the other uses of the Increase
Indent and Decrease Indent commands. For example, you can no longer use them
to change the numbering level in a multilevel list.

--
Stefan Blom
Microsoft Word MVP


"LarryG" wrote in message
...
Hi Stephan - I got as far as the opening the manage style buttons - but
don't
see where the defaut indent measurement is or where to change it.
When in word and I use the indent command it looks like it's .5" and what
I
want to do is make it .25" per click
- thank you for your patience.

Larry




"Stefan Blom" wrote:

OK, the web interface can be difficult to navigate. :-) I'll just repeat
my
reply in this thread:

To change the indent settings: Press Ctrl+Alt+Shift+S. In the Styles task
pane, click the Manage Styles button. On the Set Defaults tab, make the
desired changes. Click "New documents based on this template" and then
click
OK. If/when you are prompted to save your template, choose to do so.

To change the default tabs for a document, use the Tabs dialog box. (For
easy access, you may want to add the Tabs command to the Quick Access
Toolbar, via Office button | Word Options, Customize category).

To change the default tabs for all documents, open the normal.dotm
template
as a file (search for it in Windows, then right-click its icon and click
the
Open command). Set the desired default tab stops in the Tabs dialog box,
and
click OK. Save and close normal.dotm. But see
http://word.mvps.org/faqs/formatting/SettingTabs.htm, which explains why
you
should be using custom tab stops instead of the default ones.

--
Stefan Blom
Microsoft Word MVP


"LarryG" wrote in message
...
I don't see a response in the other thread - Sorry it got posted twice -
first time attempting to use the forumn

"Stefan Blom" wrote:

See the response(s) in your other thread.

--
Stefan Blom
Microsoft Word MVP


"LarryG" wrote in message
...
I want to set the default indent and also the default tab spacing -
any
help
would be appreciated

Email to

many thanks in advance

Larry















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
WOrd 2007 Change Default style to NO SPACING Ron Boetger New Users 4 May 10th 07 09:06 PM
change default column spacing from 5 to 2 EllyEm Microsoft Word Help 5 January 30th 07 12:48 PM
How can I change the default spacing after a period from 1 to 2 sp Tom I Microsoft Word Help 1 August 28th 06 08:01 PM
How do I change hanging indent default when using automatic number Jenka Microsoft Word Help 1 August 15th 05 04:23 PM
how do you change the default spacing from auto to 0? Deb Microsoft Word Help 3 July 8th 05 12:10 AM


All times are GMT +1. The time now is 09:03 AM.

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"