2017-07-01 37 views

回答

0

您可以刪除RecentFiles收集工作簿中的條目,就像這樣:

Dim r As RecentFile 
Dim wb As Workbook 

' Change this to point to the workbook to be removed from the jump list 
Set wb = ThisWorkbook 

For Each r In Application.RecentFiles 
    If r.Path = wb.FullName Then 
     r.Delete 
     Exit For 
    End If 
Next r 
相關問題