Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Recently Used Templates list in Task Pane

Hi, I'm wondering if anyone has figured out a way to clear off an item or
even the entire list of Recently Used Templates in the Task Pane?
Specifically asking about Excel 2003, but applies to all Office 2003 products
installed on my workstation.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default Recently Used Templates list in Task Pane

Alfie,

Try a macro like this:

Sub RemoveFilesFromRecentList()
Dim i As Integer
For i = Application.RecentFiles.Count To 1 Step -1
If MsgBox("Delete this file from recent files? " & Chr(10) & _
Application.RecentFiles.Item(i).Name, vbYesNo) = vbYes Then
Application.RecentFiles.Item(i).Delete
End If
Next i
End Sub

HTH,
Bernie
MS Excel MVP


"Alfie" wrote in message
...
Hi, I'm wondering if anyone has figured out a way to clear off an item or
even the entire list of Recently Used Templates in the Task Pane?
Specifically asking about Excel 2003, but applies to all Office 2003 products
installed on my workstation.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Recently Used Templates list in Task Pane

I will try this. I am not a novice to Excel, but I have never worked with
Macros. This will be my first crack at it, so I may not do it right away.
Thanks for the suggestion, I will let you know.

"Bernie Deitrick" wrote:

Alfie,

Try a macro like this:

Sub RemoveFilesFromRecentList()
Dim i As Integer
For i = Application.RecentFiles.Count To 1 Step -1
If MsgBox("Delete this file from recent files? " & Chr(10) & _
Application.RecentFiles.Item(i).Name, vbYesNo) = vbYes Then
Application.RecentFiles.Item(i).Delete
End If
Next i
End Sub

HTH,
Bernie
MS Excel MVP


"Alfie" wrote in message
...
Hi, I'm wondering if anyone has figured out a way to clear off an item or
even the entire list of Recently Used Templates in the Task Pane?
Specifically asking about Excel 2003, but applies to all Office 2003 products
installed on my workstation.




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Recently Used Templates list in Task Pane

Alfie

Before you get too far.............

Bernie's code removes entries from the regular File MRU list, not the from the
Task Pane Recently used Templates.

I can't help you with the Task Pane problem.


Gord Dibben MS Excel MVP

On Fri, 15 Dec 2006 10:25:00 -0800, Alfie
wrote:

I will try this. I am not a novice to Excel, but I have never worked with
Macros. This will be my first crack at it, so I may not do it right away.
Thanks for the suggestion, I will let you know.

"Bernie Deitrick" wrote:

Alfie,

Try a macro like this:

Sub RemoveFilesFromRecentList()
Dim i As Integer
For i = Application.RecentFiles.Count To 1 Step -1
If MsgBox("Delete this file from recent files? " & Chr(10) & _
Application.RecentFiles.Item(i).Name, vbYesNo) = vbYes Then
Application.RecentFiles.Item(i).Delete
End If
Next i
End Sub

HTH,
Bernie
MS Excel MVP


"Alfie" wrote in message
...
Hi, I'm wondering if anyone has figured out a way to clear off an item or
even the entire list of Recently Used Templates in the Task Pane?
Specifically asking about Excel 2003, but applies to all Office 2003 products
installed on my workstation.





  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Recently Used Templates list in Task Pane

Ok, found my answer:

You have to go to
"HKEY_CURRENT_USER†’Software†’Microsoft†’Office †’11.0†’Excel†’Recent Templates" in
Windows Registry, and clear unwanted strings.



"Gord Dibben" wrote:

Alfie

Before you get too far.............

Bernie's code removes entries from the regular File MRU list, not the from the
Task Pane Recently used Templates.

I can't help you with the Task Pane problem.


Gord Dibben MS Excel MVP

On Fri, 15 Dec 2006 10:25:00 -0800, Alfie
wrote:

I will try this. I am not a novice to Excel, but I have never worked with
Macros. This will be my first crack at it, so I may not do it right away.
Thanks for the suggestion, I will let you know.

"Bernie Deitrick" wrote:

Alfie,

Try a macro like this:

Sub RemoveFilesFromRecentList()
Dim i As Integer
For i = Application.RecentFiles.Count To 1 Step -1
If MsgBox("Delete this file from recent files? " & Chr(10) & _
Application.RecentFiles.Item(i).Name, vbYesNo) = vbYes Then
Application.RecentFiles.Item(i).Delete
End If
Next i
End Sub

HTH,
Bernie
MS Excel MVP


"Alfie" wrote in message
...
Hi, I'm wondering if anyone has figured out a way to clear off an item or
even the entire list of Recently Used Templates in the Task Pane?
Specifically asking about Excel 2003, but applies to all Office 2003 products
installed on my workstation.







  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Recently Used Templates list in Task Pane

Alfie

Thanks for posting this.

Now we all know.


Gord

On Fri, 15 Dec 2006 13:19:01 -0800, Alfie
wrote:

Ok, found my answer:

You have to go to
"HKEY_CURRENT_USER?Software?Microsoft?Office?11.0 ?Excel?Recent Templates" in
Windows Registry, and clear unwanted strings.



"Gord Dibben" wrote:

Alfie

Before you get too far.............

Bernie's code removes entries from the regular File MRU list, not the from the
Task Pane Recently used Templates.

I can't help you with the Task Pane problem.


Gord Dibben MS Excel MVP

On Fri, 15 Dec 2006 10:25:00 -0800, Alfie
wrote:

I will try this. I am not a novice to Excel, but I have never worked with
Macros. This will be my first crack at it, so I may not do it right away.
Thanks for the suggestion, I will let you know.

"Bernie Deitrick" wrote:

Alfie,

Try a macro like this:

Sub RemoveFilesFromRecentList()
Dim i As Integer
For i = Application.RecentFiles.Count To 1 Step -1
If MsgBox("Delete this file from recent files? " & Chr(10) & _
Application.RecentFiles.Item(i).Name, vbYesNo) = vbYes Then
Application.RecentFiles.Item(i).Delete
End If
Next i
End Sub

HTH,
Bernie
MS Excel MVP


"Alfie" wrote in message
...
Hi, I'm wondering if anyone has figured out a way to clear off an item or
even the entire list of Recently Used Templates in the Task Pane?
Specifically asking about Excel 2003, but applies to all Office 2003 products
installed on my workstation.






Gord Dibben MS Excel MVP
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2003 SP2 Task Pane Disabling Does Not Work Travich Excel Discussion (Misc queries) 2 June 20th 06 03:43 PM
Excel 2003 SP2 Task Pane Disabling Does Not Work Travich Excel Discussion (Misc queries) 0 June 19th 06 08:56 PM
Can I add files to the getting started task pane in Excel? Steve Barnett Excel Discussion (Misc queries) 0 February 3rd 06 12:29 PM
How do I access the Document recovery task pane in Excel AndyG Excel Discussion (Misc queries) 1 February 16th 05 03:21 AM
How to turn OFF the TASK PANE? [email protected] Setting up and Configuration of Excel 3 February 10th 05 06:58 PM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"