PC Review


Reply
Thread Tools Rate Thread

Adding & removing file names from file menu

 
 
=?Utf-8?B?Um9iZXJ0IE1jTg==?=
Guest
Posts: n/a
 
      13th Nov 2006
Hi, I'm using Word 2003 for Windows. If one clicks on the file menu on MS
Word, at the bottom there are the last 9 files I opened. Following them,
there are two other files that appear that were affixed by the program,
OmniPro. First of all, I'd like to delete those two file names that are
there permanently, and Secondly, there are is one file name that I would like
to have listed permanently at the end of the file menu, such that a click
would open it. Can someone explain to me how to delete the two files names
that now appear at the bottom of the file menu and how I can in turn add a
file name in those positions?
Thanks very much.
 
Reply With Quote
 
 
 
 
Graham Mayor
Guest
Posts: n/a
 
      13th Nov 2006
The two OmniPro menu items are placed by the OmniPro add-in so the answer is
to remove the add-in.
You cannot have files permanently attached to the file list, but you can
create a pair of macros to open the files and add the macros to the file
menu - eg

Sub MyFile1()
Documents.Open FileName:="""c:\Path\filename.doc"""
End Sub

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

probably better still, add the Work menu to the menu bar and add whatever
files you want to retain to that menu.
Tools > customize> commands > built-in menus > Word - drag to the menu bar.

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

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


better

Robert McN wrote:
> Hi, I'm using Word 2003 for Windows. If one clicks on the file menu
> on MS Word, at the bottom there are the last 9 files I opened.
> Following them, there are two other files that appear that were
> affixed by the program, OmniPro. First of all, I'd like to delete
> those two file names that are there permanently, and Secondly, there
> are is one file name that I would like to have listed permanently at
> the end of the file menu, such that a click would open it. Can
> someone explain to me how to delete the two files names that now
> appear at the bottom of the file menu and how I can in turn add a
> file name in those positions?
> Thanks very much.



 
Reply With Quote
 
=?Utf-8?B?QW5kcmV3IFY=?=
Guest
Posts: n/a
 
      13th Nov 2006
Or do it without opening the files:

Sub MyFile1()
Application.RecentFiles.Add Document:="""c:\Path\filename.doc"""
End Sub


"Graham Mayor" wrote:

> The two OmniPro menu items are placed by the OmniPro add-in so the answer is
> to remove the add-in.
> You cannot have files permanently attached to the file list, but you can
> create a pair of macros to open the files and add the macros to the file
> menu - eg
>
> Sub MyFile1()
> Documents.Open FileName:="""c:\Path\filename.doc"""
> End Sub
>
> http://www.gmayor.com/installing_macro.htm
>
> probably better still, add the Work menu to the menu bar and add whatever
> files you want to retain to that menu.
> Tools > customize> commands > built-in menus > Word - drag to the menu bar.
>
> --
> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Graham Mayor - Word MVP
>
> My web site www.gmayor.com
> Word MVP web site http://word.mvps.org
> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>
>
> better
>
> Robert McN wrote:
> > Hi, I'm using Word 2003 for Windows. If one clicks on the file menu
> > on MS Word, at the bottom there are the last 9 files I opened.
> > Following them, there are two other files that appear that were
> > affixed by the program, OmniPro. First of all, I'd like to delete
> > those two file names that are there permanently, and Secondly, there
> > are is one file name that I would like to have listed permanently at
> > the end of the file menu, such that a click would open it. Can
> > someone explain to me how to delete the two files names that now
> > appear at the bottom of the file menu and how I can in turn add a
> > file name in those positions?
> > Thanks very much.

>
>
>

 
Reply With Quote
 
=?Utf-8?B?Um9iZXJ0IE1jTg==?=
Guest
Posts: n/a
 
      13th Nov 2006
Graham,
Your "work" menu is great. Thanks very much. I never knew such a thing
existed. Question: Not knowing how it worked, I clicked on the menu and saw
that it said, "add to work menu." I clicked on it, and the open file was
added to it. How does one remove an item from the "work" menu? I poked
around and can't find any way to get rid of what's there!

Thanks again.
Bob

"Graham Mayor" wrote:

> The two OmniPro menu items are placed by the OmniPro add-in so the answer is
> to remove the add-in.
> You cannot have files permanently attached to the file list, but you can
> create a pair of macros to open the files and add the macros to the file
> menu - eg
>
> Sub MyFile1()
> Documents.Open FileName:="""c:\Path\filename.doc"""
> End Sub
>
> http://www.gmayor.com/installing_macro.htm
>
> probably better still, add the Work menu to the menu bar and add whatever
> files you want to retain to that menu.
> Tools > customize> commands > built-in menus > Word - drag to the menu bar.
>
> --
> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Graham Mayor - Word MVP
>
> My web site www.gmayor.com
> Word MVP web site http://word.mvps.org
> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>
>
> better
>
> Robert McN wrote:
> > Hi, I'm using Word 2003 for Windows. If one clicks on the file menu
> > on MS Word, at the bottom there are the last 9 files I opened.
> > Following them, there are two other files that appear that were
> > affixed by the program, OmniPro. First of all, I'd like to delete
> > those two file names that are there permanently, and Secondly, there
> > are is one file name that I would like to have listed permanently at
> > the end of the file menu, such that a click would open it. Can
> > someone explain to me how to delete the two files names that now
> > appear at the bottom of the file menu and how I can in turn add a
> > file name in those positions?
> > Thanks very much.

>
>
>

 
Reply With Quote
 
Suzanne S. Barnhill
Guest
Posts: n/a
 
      13th Nov 2006
See http://word.mvps.org/FAQs/General/WorkMenu.htm for complete
instructions.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Robert McN" <(E-Mail Removed)> wrote in message
news:17A8C24C-1055-49A4-B15E-(E-Mail Removed)...
> Graham,
> Your "work" menu is great. Thanks very much. I never knew such a thing
> existed. Question: Not knowing how it worked, I clicked on the menu and

saw
> that it said, "add to work menu." I clicked on it, and the open file was
> added to it. How does one remove an item from the "work" menu? I poked
> around and can't find any way to get rid of what's there!
>
> Thanks again.
> Bob
>
> "Graham Mayor" wrote:
>
> > The two OmniPro menu items are placed by the OmniPro add-in so the

answer is
> > to remove the add-in.
> > You cannot have files permanently attached to the file list, but you can
> > create a pair of macros to open the files and add the macros to the file
> > menu - eg
> >
> > Sub MyFile1()
> > Documents.Open FileName:="""c:\Path\filename.doc"""
> > End Sub
> >
> > http://www.gmayor.com/installing_macro.htm
> >
> > probably better still, add the Work menu to the menu bar and add

whatever
> > files you want to retain to that menu.
> > Tools > customize> commands > built-in menus > Word - drag to the menu

bar.
> >
> > --
> > <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> > Graham Mayor - Word MVP
> >
> > My web site www.gmayor.com
> > Word MVP web site http://word.mvps.org
> > <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> >
> >
> > better
> >
> > Robert McN wrote:
> > > Hi, I'm using Word 2003 for Windows. If one clicks on the file menu
> > > on MS Word, at the bottom there are the last 9 files I opened.
> > > Following them, there are two other files that appear that were
> > > affixed by the program, OmniPro. First of all, I'd like to delete
> > > those two file names that are there permanently, and Secondly, there
> > > are is one file name that I would like to have listed permanently at
> > > the end of the file menu, such that a click would open it. Can
> > > someone explain to me how to delete the two files names that now
> > > appear at the bottom of the file menu and how I can in turn add a
> > > file name in those positions?
> > > Thanks very much.

> >
> >
> >


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
removing saved file names =?Utf-8?B?U2hhenph?= Microsoft Word Document Management 1 31st May 2007 03:39 PM
Removing file names that are stored in open file box? Gary Kent Microsoft Excel Discussion 1 6th Aug 2005 08:52 AM
removing old backup file names shlomo Windows XP Help 0 1st Jul 2004 04:56 PM
Removing file names Steve Windows XP General 3 7th Oct 2003 06:15 AM
Adding and Removing Custom Menu Items for one file... Jon Kane Microsoft Excel Programming 2 17th Sep 2003 07:23 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:15 AM.