⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 default.vbs

📁 WinCE CAB Manager3.0,编辑CAB安装文件的利器
💻 VBS
📖 第 1 页 / 共 2 页
字号:

' FileExtracted -------------------------------------------------------------
'
' Description: Occurs after a file has been extracted.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oFile As CeCabinetLib.CeFile
'	sPath As String
'
Sub CeCabinetMgr_FileExtracted( oCabinet, oFile, sPath )
	' TODO: Add your implementation here
End Sub


' BeforeFileRemove ----------------------------------------------------------
'
' Description: Occurs just before a file is removed from the cabinet.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oFile As CeCabinetLib.CeFile
'
Sub CeCabinetMgr_BeforeFileRemove( oCabinet, oFile )
	' TODO: Add your implementation here
End Sub


' ShortcutAdded -------------------------------------------------------------
'
' Description: Occurs after a shortcut is added to the cabinet.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oShortcut As CeCabinetLib.CeShortcut
'
Sub CeCabinetMgr_ShortcutAdded( oCabinet, oShortcut )
	' TODO: Add your implementation here
End Sub


' ShortcutChanged -----------------------------------------------------------
'
' Description: Occurs when a shortcut's properties are changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oShortcut As CeCabinetLib.CeShortcut
'	Item As CeCabinetLib.PropChangeType
'
Sub CeCabinetMgr_ShortcutChanged( oCabinet, oShortcut, Item )
	' TODO: Add your implementation here
End Sub


' BeforeShortcutRemove ------------------------------------------------------
'
' Description: Occurs just before a shortcut is removed from the cabinet.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oShortcut As CeCabinetLib.CeShortcut
'
Sub CeCabinetMgr_BeforeShortcutRemove( oCabinet, oShortcut )
	' TODO: Add your implementation here
End Sub


' RegEntryAdded -------------------------------------------------------------
'
' Description: Occurs after a registry entry is added to the cabinet.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oRegEntry As CeCabinetLib.CeRegEntry
'
Sub CeCabinetMgr_RegEntryAdded( oCabinet, oRegEntry )
	' TODO: Add your implementation here
End Sub


' RegEntryChanged -----------------------------------------------------------
'
' Description: Occurs when a registry entry's properties are changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oRegEntry As CeCabinetLib.CeRegEntry
'	Item As CeCabinetLib.PropChangeType
'
Sub CeCabinetMgr_RegEntryChanged( oCabinet, oRegEntry, Item )
	' TODO: Add your implementation here
End Sub


' BeforeRegEntryRemove ------------------------------------------------------
'
' Description: Occurs just before a registry entry is removed from the 
'              cabinet.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oRegEntry As CeCabinetLib.CeRegEntry
'
Sub CeCabinetMgr_BeforeRegEntryRemove( oCabinet, oRegEntry )
	' TODO: Add your implementation here
End Sub


' ReadOnlyChanged -----------------------------------------------------------
'
' Description: Occurs when the Read Only property is changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_ReadOnlyChanged( oCabinet )
	' TODO: Add your implementation here
End Sub


' Saved ---------------------------------------------------------------------
'
' Description: Occurs after a cabinet file has been saved.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_Saved( oCabinet )
	' TODO: Add your implementation here
End Sub


' SetupDllRemoved -----------------------------------------------------------
'
' Description: Occurs after a Setup DLL is removed from the cabinet.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_SetupDllRemoved( oCabinet )
	' TODO: Add your implementation here
End Sub


' SetupDllChanged -----------------------------------------------------------
'
' Description: Occurs when the Setup DLL's properties are changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	Item As CeCabinetLib.PropChangeType
'
Sub CeCabinetMgr_SetupDllChanged( oCabinet, Item )
	' TODO: Add your implementation here
End Sub


' FileRemoved ---------------------------------------------------------------
'
' Description: Occurs after a file has been removed from the cabinet, but
'              before the object is released.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oFile As CeCabinetLib.CeFile
'
Sub CeCabinetMgr_FileRemoved( oCabinet, oFile )
	' TODO: Add your implementation here
End Sub


' ShortcutRemoved -----------------------------------------------------------
'
' Description: Occurs after a shortcut has been removed from the cabinet, but
'              before the object is released.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oShortcut As CeCabinetLib.CeShortcut
'
Sub CeCabinetMgr_ShortcutRemoved( oCabinet, oShortcut )
	' TODO: Add your implementation here
End Sub


' RegEntryRemoved -----------------------------------------------------------
'
' Description: Occurs after a registry entry has been removed from the
'              cabinet, but before the object is released.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'	oRegEntry As CeCabinetLib.CeRegEntry
'
Sub CeCabinetMgr_RegEntryRemoved( oCabinet, oRegEntry )
	' TODO: Add your implementation here
End Sub


' AllowUninstallChanged -----------------------------------------------------
'
' Description: Occurs when the AllowUninstall property of a SmartPhone CAB
'              file is changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_AllowUninstallChanged( oCabinet )
	' TODO: Add your implementation here
End Sub


' PreXMLChanged -------------------------------------------------------------
'
' Description: Occurs when the PreXML property of a SmartPhone CAB file is
'              changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_PreXMLChanged( oCabinet )
	' TODO: Add your implementation here
End Sub


' PostXMLChanged ------------------------------------------------------------
'
' Description: Occurs when the PostXML property of a SmartPhone CAB file is
'              changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_PostXMLChanged( oCabinet )
	' TODO: Add your implementation here
End Sub


' PlatformMinChanged --------------------------------------------------------
'
' Description: Occurs when the PlatformMin property of a Pocket PC 2003 CAB
'              file is changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_PlatformMinChanged( oCabinet )
	' TODO: Add your implementation here
End Sub


' PlatformMaxChanged --------------------------------------------------------
'
' Description: Occurs when the PlatformMax property of a Pocket PC 2003 CAB
'              file is changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_PlatformMaxChanged( oCabinet )
	' TODO: Add your implementation here
End Sub


' PlatformNameChanged -------------------------------------------------------
'
' Description: Occurs when the PlatformName property of a Pocket PC 2003 CAB
'              file is changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_PlatformNameChanged( oCabinet )
	' TODO: Add your implementation here
End Sub


' CompressionLevelChanged ---------------------------------------------------
'
' Description: Occurs when the CompressionLevel property of a CAB file is
'              changed.
'
' Parameters:
'	oCabinet As CeCabinetLib.Cabinet
'
Sub CeCabinetMgr_CompressionLevelChanged( oCabinet )
	' TODO: Add your implementation here
End Sub


' SaveProgress --------------------------------------------------------------
'
' Description: Occurs repeatedly while a file is being saved.
'
' Parameters:
'	oCabinet As CeCabinetLib.CeCabinet
'	PercentSaved As Long
'
Sub CeCabinetMgr_SaveProgress( oCabinet, PercentSaved )
	' TODO: Add your implementation here
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -