How to change templates display from icons to list or details?

M

mikewillnot

With Word 2003, SP-3
In some of my templates folder I have a lot of templates, more than
are visible on a single "icon" style screen when choosing a template.
How can I change the mode of that screen from "icon" to "list" or
"details" ?

THANKS
 
S

Suzanne S. Barnhill

You can't, at least not without some VBA. Have you considered adding
subfolders to your Templates folder? Each will show up as a separate tab,
and you can move templates to the appropriate subfolders/tabs so that you
don't have so many displayed on the General tab.
 
M

mikewillnot

Thanks, Suzanne. I'm using subfolders, but still have the
overcrowding problem, both on the General screen and in one or two
subfolders. Some VBA isn't over my head, but some direction would
help.
 
G

Graham Mayor

If you are using Word on Windows XP then

Sub FileNewDialog()
SendKeys "{TAB 6}{Right}+{TAB 6}"
Dialogs(wdDialogFileNew).Show
End Sub

should work for List or

Sub FileNewDialog()
SendKeys "{TAB 6}{Right 2}+{TAB 6}"
Dialogs(wdDialogFileNew).Show
End Sub

for details.

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
S

Suzanne S. Barnhill

Well, any VBA is over my head, so I suggest you might want to post in one of
the word.vba NGs for further guidance.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Thanks, Suzanne. I'm using subfolders, but still have the
overcrowding problem, both on the General screen and in one or two
subfolders. Some VBA isn't over my head, but some direction would
help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top