forked from lee-soft/ViStart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JumpList.cls
48 lines (36 loc) · 998 Bytes
/
JumpList.cls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "JumpList"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Option Explicit
Public ImageName As String
Private m_mruKey As Collection
Public Function AddMRURegKey(thisMRUKey As RegistryKey)
m_mruKey.Add thisMRUKey
End Function
Public Function IsEmpty() As Boolean
IsEmpty = True
If m_mruKey.count > 0 Then
IsEmpty = False
End If
End Function
Public Function GetMRUList()
Dim thisMRUKey As RegistryKey
Dim m_lnkCache()
For Each thisMRUKey In m_mruKey
m_lnkCache = ConcatArray(m_lnkCache, GetMRUListForKey(thisMRUKey))
Next
GetMRUList = m_lnkCache
End Function
Private Sub Class_Initialize()
Set m_mruKey = New Collection
End Sub