ToolTipText = "Remove checkmarked items from list"
Top = 3405
Width = 825
End
Begin VB.PictureBox picRocket
BorderStyle = 0 'Kein
Height = 270
Left = 9495
Picture = "fRecent.frx":08CA
ScaleHeight = 270
ScaleWidth = 135
TabIndex = 21
Top = 3450
Width = 135
End
Begin VB.Shape shp
BorderColor = &H0000FFFF&
BorderWidth = 2
Height = 3960
Left = 15
Top = 15
Width = 11205
End
Begin VB.Image imgUMG
Height = 630
Left = 120
Picture = "fRecent.frx":0BE4
Top = 3285
Width = 675
End
Begin VB.Label lbName
AutoSize = -1 'True
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "Name:"
ForeColor = &H00606060&
Height = 195
Index = 1
Left = 4470
TabIndex = 11
ToolTipText = "Project name"
Top = 165
Visible = 0 'False
Width = 465
End
Begin VB.Label lbName
BackColor = &H00000000&
BackStyle = 0 'Transparent
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 195
Index = 0
Left = 4980
TabIndex = 10
Top = 165
Width = 4485
End
Begin VB.Label lbBrokenLinks
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = " "
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 195
Left = 2040
TabIndex = 9
Top = 165
Width = 2130
End
Begin VB.Label lb
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "Γ"
BeginProperty Font
Name = "Wingdings"
Size = 8.25
Charset = 2
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 180
Index = 4
Left = 225
TabIndex = 8
Top = 345
Width = 165
End
Begin VB.Label lb
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "Checkmark the item(s) you wish to remove from this list and click [Remove]. Or select a project and click [Launch VB6]."
BeginProperty Font
Name = "Small Fonts"
Size = 6.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00606060&
Height = 510
Index = 3
Left = 1035
TabIndex = 3
Top = 3345
Width = 2700
End
End
Attribute VB_Name = "fRecent"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Declare Function ClipCursor Lib "user32" (lpRect As Any) As Long
Private Declare Function CloseHandle Lib "Kernel32" (ByVal hObject As Long) As Long
Private Declare Function CreateRectRgn Lib "gdi32" (ByVal x1 As Long, ByVal y1 As Long, ByVal x2 As Long, ByVal y2 As Long) As Long
Private Declare Function DeleteObject Lib "gdi32" (ByVal hObject As Long) As Long
Private Declare Function GetClassLong Lib "user32" Alias "GetClassLongA" (ByVal hWnd As Long, ByVal nIndex As Long) As Long
Private Declare Function GetLongPathName Lib "Kernel32" Alias "GetLongPathNameA" (ByVal lpszShortPath As String, ByVal lpszLongPath As String, ByVal cchBuffer As Long) As Long
Private Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long 'used to get the 'other button'
Private Declare Function GetWindowRect Lib "user32" (ByVal hWnd As Long, ByRef lpRect As RECT) As Long
Private Declare Function LoadCursor Lib "user32" Alias "LoadCursorA" (ByVal hInstance As Long, ByVal lpCursorName As Long) As Long
Private Declare Function LoadCursorFromFile Lib "user32" Alias "LoadCursorFromFileA" (ByVal lpFileName As String) As Long
Private Declare Function OpenProcess Lib "Kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
Private Declare Function PutFocus Lib "user32" Alias "SetFocus" (ByVal hWnd As Long) As Long
Private Declare Function ReleaseCapture Lib "user32" () As Long
Private Declare Function SetClassLong Lib "user32" Alias "SetClassLongA" (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Private Declare Function SetCursor Lib "user32" (ByVal hCursor As Long) As Long
Private Declare Function SetWindowRgn Lib "user32" (ByVal hWnd As Long, ByVal hRgn As Long, ByVal bRedraw As Boolean) As Long
Private Declare Function ShellAbout Lib "shell32.dll" Alias "ShellAboutA" (ByVal hWnd As Long, ByVal szApp As String, ByVal szOtherStuff As String, ByVal hIcon As Long) As Long
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Declare Sub Sleep Lib "Kernel32" (ByVal dwMilliseconds As Long)
Private Enum ApiConstants
CS_DROPSHADOW = &H20000
GCL_STYLE = -26
GCL_HCURSOR = -12
SM_SWAPBUTTON = 23
CsrArrow = 32512
CsrRightHand = 32649
PROCESS_ALL_ACCESS = &H1F0FFF
SW_SHOWNORMAL = 1
SE_NO_ERROR = 33 'Values below 33 are error returns