Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I often use VBA to open files that stay in memory. I'd like to update the
recent-files list sometimes when I do this. How is that possible? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
There's a parm you can specify in the workbooks.open command:
Dim w As Workbook Set w = Workbooks.Open(Filename:="c:\something.xls", addtomru:=True) MikeH2 wrote: I often use VBA to open files that stay in memory. I'd like to update the recent-files list sometimes when I do this. How is that possible? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() This post has code I use on my own system. It also removes items from the recent files list that no longer exist... http://tinyurl.com/2eumzt and this has helpful posting tips... http://www.cpearson.com/excel/newposte.htm -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware (Excel Add-ins / Excel Programming) "MikeH2" wrote in message I often use VBA to open files that stay in memory. I'd like to update the recent-files list sometimes when I do this. How is that possible? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA Integration with Outlook: Mail Item objects from .msg files | Excel Discussion (Misc queries) | |||
match item in 2 excel files | Excel Discussion (Misc queries) | |||
how do I remove an item from the recently used files list | Excel Discussion (Misc queries) | |||
How to change default Open/Files of Type to "Microsoft Excel Files | Excel Discussion (Misc queries) | |||
Macro to open *.dat files and save as .txt (comma delimited text files) | Excel Programming |