Further to previous question. Have recreated toolbars. Can't get to place /
do what Charles Kenyon suggests with myglobal.dot - network won't let me or
I'm doing it wrong! Have recreated toolbars and macros but toolbars keep
moving into a long line rather than stacking. Obviously I doing something
wrong. Help please.
Hi Laurina,
I think you are referring to:
> One way you can protect yourself is by building/moving your customizations
> to another template. See http://addbalance.com/word/movetotemplate.htm for
> step-by-step instructions on moving / sharing / copying / backing-up
> customizations including AutoText, AutoCorrect, keyboard assignments,
> toolbars, macros, etc.
When I want toolbars to be in a particular place, I park them with an
AutoExec macro. First, though, make sure you have turned of the "adaptive
menus."
Tools > Customize > Options
Check the box to always display full menus. While I don't use the built-in
Standard or Formatting toolbars because I use my custom versions, if I did,
I would also check the box to always put them on two rows.
The following language in an AutoExec macro (in a template in my Word
Startup Folder) positions a couple of my toolbars that seemed to otherwise
wander:
With CommandBars("Macros")
.Left = 521
.Top = 23
.Height = 28
.Visible = True
.Position = 1
End With
With CommandBars("CDEVTools Kenyon")
.Left = 228
.Top = 23
.Height = 28
.Visible = True
.Position = 1
End With
Note, to get the values for these, I positioned the toolbars where I wanted
them manually and then used the Immediate Window in the vba Editor to get
the values:
? CommandBars("Macros").Left
Hope this helps.

Signature
Charles Kenyon
Word New User FAQ & Web Directory: http://addbalance.com/word
Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide
See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
> Further to previous question. Have recreated toolbars. Can't get to place
> /
[quoted text clipped - 3 lines]
> moving into a long line rather than stacking. Obviously I doing something
> wrong. Help please.