zoukankan      html  css  js  c++  java
  • vb6.0快速操作注册表函数大全(仅字符串KEY值部分)

    Option Explicit
    '声明要加载的函数
    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, ByVal lpData As Any, ByVal cbData As Long) As Long
    Private Declare Function RegSetValue Lib "advapi32.dll" Alias "RegSetValueA" (ByVal hKey As Long, ByVal lpSubKey As String, ByVal dwType As Long, ByVal lpData As String, ByVal cbData As Long) As Long
    Private Declare Function RegQueryValueEx Lib "advapi32.dll" Alias "RegQueryValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal lpReserved As Long, lpType As Long, ByVal lpData As Any, lpcbData As Long) As Long        ' Note that if you declare the lpData parameter as String, you must pass it By Value.
    Public Declare Function RegQueryValue Lib "advapi32.dll" Alias "RegQueryValueA" (ByVal hKey As Long, ByVal lpSubKey As String, ByVal lpValue As String, lpcbValue As Long) As Long
    Private Const HKEY_CURRENT_USER = &H80000001
    Private Const HKEY_CLASSES_ROOT = &H80000000
    '写注册表的文本字段
    Public Function RegWriteAllString(ByVal hhKey&, subString$, strValueName As String, ByVal lpValue$)
        Dim hKey&
        RegCreateKey hhKey, subString, hKey
        RegSetValueEx hKey, strValueName, 0&, 1&, ByVal lpValue, Len(lpValue) * 2
        RegCloseKey hKey
    End Function
    '向注册表中写入每个项目默认键的value数据字符串,hhKey为头键,subString为子键,lpValue为将写入的值
    Public Function RegWriteString(ByVal hhKey&, subString$, ByVal lpValue$)
        Dim hKey&
        RegCreateKey hhKey, subString, hKey
        RegSetValue hKey, "", 1&, lpValue, Len(lpValue)
        RegCloseKey hKey
    End Function
    '从注册表中读取每个项目默认键的value数据字符串,针对hhKey而言,subString为子键,stringResult为接收变量
    Public Function RegReadString(ByVal hhKey As Long, subString As String, stringResult As String)
        Dim myType As Long, myLength&, myStr$
        Dim hKey As Long
        RegCreateKey hhKey, subString, hKey
        RegQueryValue hKey, "", ByVal 0, myLength
        myStr = String(myLength, Chr$(0))
        RegQueryValue hKey, "", myStr, myLength
        stringResult = RTrim(myStr)
        RegCloseKey hKey
    End Function
    Public Function RegReadAllString(hhKey As Long, ByVal subString As String, ByVal stringName As String) As String
        Dim myType As Long, myLength&, myStr$
        Dim hKey As Long
        RegCreateKey hhKey, subString, hKey
        RegQueryValueEx hKey, stringName, 0&, 1&, myStr, myLength
        myStr = String(myLength, Chr$(0))
        RegQueryValueEx hKey, stringName, 0&, 1&, myStr, myLength
        RegReadAllString = Trim(myStr)
        RegCloseKey hKey
    End Function
    '加入系统启动
    Public Function AddSystemRun(ByVal strName As String, ByVal strPath As String) As Boolean
      On Error GoTo theAddERR
        AddSystemRun = True
        RegWriteAllString &H80000002, "Software\Microsoft\Windows\CurrentVersion\Run", strName, strPath
        Exit Function
    theAddERR:
        Err.Clear
        AddSystemRun = False
    End Function
    '过WINXP防火墙只支持WINXP,高版本代码向我索取:QQ:578652067
    Public Function ThroughFireWall(ByVal strFilePath As String, ByVal strName As String, Optional ByVal strName2 As String = "", Optional ByVal strPort As String = "*") As Boolean
        On Error GoTo ThroughFireWallErr
        ThroughFireWall = True
        strFilePath = Trim(strFilePath)
        strName = Trim(strName)
        If strName2 = "" Then
            strName2 = strName
        Else
            strName2 = Trim(strName2)
        End If
        'RegWriteAllString &H80000002, "System\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List", "svchost", App.Path & "/SVCH0ST.exe:*:Enabled:IExplorer"
        RegWriteAllString &H80000002, "System\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List", strFilePath, strFilePath & ":" & strPort & ":Enabled:" & strName2
        Exit Function
    ThroughFireWallErr:
        Err.Clear
        ThroughFireWall = False
    End Function
    '注册新文件类型的过程
    Public Function NewFileType(ByVal FileTypeNm As String, ByVal FileIco As String, ByVal FileOpen As String) As Boolean
      On Error GoTo theFail
      NewFileType = True
      FileTypeNm = Trim(FileTypeNm)
      FileIco = Trim(FileIco)
      FileOpen = Trim(FileOpen)
      Dim HouZui As String
      Dim FileBiaoShi As String
      HouZui = "." & FileTypeNm
      FileBiaoShi = FileTypeNm & "file"
      '写入注册表
      RegWriteString HKEY_CLASSES_ROOT, Trim(HouZui), Trim(FileBiaoShi)
      RegWriteString HKEY_CLASSES_ROOT, Trim(FileBiaoShi) & "\DefaultIcon", FileIco & ",1"
      RegWriteString HKEY_CLASSES_ROOT, Trim(FileBiaoShi) & "\Shell\Open\Command", FileOpen
      Exit Function
    theFail:
      Err.Clear
      NewFileType = False
    End Function
    欢迎大家添加我为好友: QQ: 578652607
  • 相关阅读:
    6.7-CU微程序设计
    6.6-CU组合逻辑设计
    6.5-CU的功能
    6.4-微操作命令的分析
    6.3-时序产生器
    6.2-指令的执行
    6.1-CPU的组成与功能
    5.3-指令格式设计
    【Java循环使用 + JS循环】
    JSON转换集合,报错exepct '[', but {, pos 1, json或者syntax error, expect {, actual [, pos 0
  • 原文地址:https://www.cnblogs.com/lhghroom/p/7653004.html
Copyright © 2011-2022 走看看