转至繁体中文版     | 网站首页 | 图文教程 | 资源下载 | 站长博客 | 图片素材 | 武汉seo | 武汉网站优化 | 
最新公告:     敏韬网|教学资源学习资料永久免费分享站!  [mintao  2008年9月2日]        
您现在的位置: 学习笔记 >> 图文教程 >> 软件开发 >> VB.NET程序 >> 正文
★★★敬请留意★★★:和微软一模一样的记事本的源代码(5)         ★★★★

★★★敬请留意★★★:和微软一模一样的记事本的源代码(5)

作者:闵涛 文章来源:闵涛的学习笔记 点击数:2046 更新时间:2009/4/23 18:57:53
      sBuffer = Space(lBufferSize)
      rtn = RegQueryValueEx(hKey, Entry, 0, REG_BINARY, sBuffer, lBufferSize) ''''get the value from the registry
      If rtn = ERROR_SUCCESS Then ''''if the value could be retreived then
         rtn = RegCloseKey(hKey)  ''''close the key
         GetBinaryValue = sBuffer ''''return the value to the user
      Else                        ''''otherwise, if the value couldnt be retreived
         GetBinaryValue = "Error" ''''return Error to the user
         If DisplayErrorMsg = True Then ''''if the user wants to errors displayed
            MsgBox ErrorMsg(rtn)  ''''display the error to the user
         End If
      End If
   Else ''''otherwise, if the key couldnt be opened
      GetBinaryValue = "Error" ''''return Error to the user
      If DisplayErrorMsg = True Then ''''if the user wants to errors displayed
         MsgBox ErrorMsg(rtn)  ''''display the error to the user
      End If
   End If
End If

End Function
Function DeleteKey(Keyname As String)

Call ParseKey(Keyname, MainKeyHandle)

If MainKeyHandle Then
   rtn = RegOpenKeyEx(MainKeyHandle, Keyname, 0, KEY_WRITE, hKey) ''''open the key
   If rtn = ERROR_SUCCESS Then ''''if the key could be opened then
      rtn = RegDeleteKey(hKey, Keyname) ''''delete the key
      rtn = RegCloseKey(hKey)  ''''close the key
   End If
End If

End Function

Function GetMainKeyHandle(MainKeyName As String) As Long

Const HKEY_CLASSES_ROOT = &H80000000
Const HKEY_CURRENT_USER = &H80000001
Const HKEY_LOCAL_MACHINE = &H80000002
Const HKEY_USERS = &H80000003
Const HKEY_PERFORMANCE_DATA = &H80000004
Const HKEY_CURRENT_CONFIG = &H80000005
Const HKEY_DYN_DATA = &H80000006
  
Select Case MainKeyName
       Case "HKEY_CLASSES_ROOT"
            GetMainKeyHandle = HKEY_CLASSES_ROOT
       Case "HKEY_CURRENT_USER"
            GetMainKeyHandle = HKEY_CURRENT_USER
       Case "HKEY_LOCAL_MACHINE"
            GetMainKeyHandle = HKEY_LOCAL_MACHINE
       Case "HKEY_USERS"
            GetMainKeyHandle = HKEY_USERS
       Case "HKEY_PERFORMANCE_DATA"
            GetMainKeyHandle = HKEY_PERFORMANCE_DATA
       Case "HKEY_CURRENT_CONFIG"
            GetMainKeyHandle = HKEY_CURRENT_CONFIG
       Case "HKEY_DYN_DATA"
            GetMainKeyHandle = HKEY_DYN_DATA
End Select

End Function

Function ErrorMsg(lErrorCode As Long) As String
   
''''If an error does accurr, and the user wants error messages displayed, then
''''display one of the following error messages

Select Case lErrorCode
       Case 1009, 1015
            GetErrorMsg = "The Registry Database is corrupt!"
       Case 2, 1010
            GetErrorMsg = "Bad Key Name"
       Case 1011
            GetErrorMsg = "Can''''t Open Key"
       Case 4, 1012
            GetErrorMsg = "Can''''t Read Key"
       Case 5
            GetErrorMsg = "Access to this key is denied"
       Case 1013
            GetErrorMsg = "Can''''t Write Key"
       Case 8, 14
            GetErrorMsg = "Out of memory"
       Case 87
            GetErrorMsg = "Invalid Parameter"
       Case 234
            GetErrorMsg = "There is more data than the buffer has been allocated to hold."
       Case Else
            GetErrorMsg = "Undefined Error Code:  " & Str$(lErrorCode)
End Select

End Function

 

Function GetStringValue(SubKey As String, Entry As String)

Call ParseKey(SubKey, MainKeyHandle)

If MainKeyHandle Then
   rtn = RegOpenKeyEx(MainKeyHandle, SubKey, 0, KEY_READ, hKey) ''''open the key
   If rtn = ERROR_SUCCESS Then ''''if the key could be opened then
      sBuffer = Space(255)     ''''make a buffer
      lBufferSize = Len(sBuffer)
      rtn = RegQueryValueEx(hKey, Entry, 0, REG_SZ, sBuffer, lBufferSize) ''''get the value from the registry
      If rtn = ERROR_SUCCESS Then ''''if the value could be retreived then
         rtn = RegCloseKey(hKey)  ''''close the key
         sBuffer = Trim(sBuffer)
         GetStringValue = Left(sBuffer, Len(sBuffer) - 1) ''''return the value to the user
      Else                        ''''otherwise, if the value couldnt be retreived
         GetStringValue = "Error" ''''return Error to the user
         If DisplayErrorMsg = True Then ''''if the user wants errors displayed then
            MsgBox ErrorMsg(rtn)  ''''tell the user what was wrong
         End If
      End If
   Else ''''otherwise, if the key couldnt be opened
      GetStringValue = "Error"       ''''return Error to the user
      If DisplayErrorMsg = True Then ''''if the user wants errors displayed then
         MsgBox ErrorMsg(rtn)        ''''tell the user what was wrong
      End If
   End If
End If

End Function

Private Sub ParseKey(Keyname As String, Keyhandle As Long)
   
rtn = InStr(Keyname, "\") ''''return if "\" is contained in the Keyname

If Left(Keyname, 5) <> "HKEY_" Or Right(Keyname, 1) = "\" Then ''''if the is a "\" at the end of the Keyname then
   MsgBox "Incorrect Format:" + Chr(10) + Chr(10) + Keyname ''''display error to the user
   Exit Sub ''''exit the procedure
ElseIf rtn = 0 Then ''''if the Keyname contains no "\"
   Keyhandle = GetMainKeyHandle(Keyname)
   Keyname = "" ''''leave Keyname blank
Else ''''otherwise, Keyname contains "\"
   Keyhandle = GetMainKeyHandle(Left(Keyname, rtn - 1)) ''''seperate the Keyname
   Keyname = Right(Keyname, Len(Keyname) - rtn)
End If

End Sub
Function CreateKey(SubKey As String)

Call ParseKey(SubKey, MainKeyHandle)

If MainKeyHandle Then
   rtn = RegCreateKey(MainKeyHandle, SubKey, hKey) ''''create the key
   If rtn = ERROR_SUCCESS Then ''''if the key was created then
      rtn = RegCloseKey(hKey)  ''''close the key
   End If
End If

End Function
Function SetStringValue(SubKey As String, Entry As String, Value As String)

Call ParseKey(SubKey, MainKeyHandle)

If MainKeyHandle Then
   rtn = RegOpenKeyEx(MainKeyHandle, SubKey, 0, KEY_WRITE, hKey) ''''open the key
   If rtn = ERROR_SUCCESS Then ''''if the key was open successfully then
      rtn = RegSetValueEx(hKey, Entry, 0, REG_SZ, ByVal Value, Len(Value)) ''''write the value
      If Not rtn = ERROR_SUCCESS Then   ''''if there was an error writting the value
         If DisplayErrorMsg = True Then ''''if the user wants errors displayed
       

上一页  [1] [2] [3]  下一页


没有相关教程
教程录入:mintao    责任编辑:mintao 
  • 上一篇教程:

  • 下一篇教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      注:本站部分文章源于互联网,版权归原作者所有!如有侵权,请原作者与本站联系,本站将立即删除! 本站文章除特别注明外均可转载,但需注明出处! [MinTao学以致用网]
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)

    同类栏目
    · C语言系列  · VB.NET程序
    · JAVA开发  · Delphi程序
    · 脚本语言
    更多内容
    热门推荐 更多内容
  • 没有教程
  • 赞助链接
    更多内容
    闵涛博文 更多关于武汉SEO的内容
    500 - 内部服务器错误。

    500 - 内部服务器错误。

    您查找的资源存在问题,因而无法显示。

    | 设为首页 |加入收藏 | 联系站长 | 友情链接 | 版权申明 | 广告服务
    MinTao学以致用网

    Copyright @ 2007-2012 敏韬网(敏而好学,文韬武略--MinTao.Net)(学习笔记) Inc All Rights Reserved.
    闵涛 投放广告、内容合作请Q我! E_mail:admin@mintao.net(欢迎提供学习资源)

    站长:MinTao ICP备案号:鄂ICP备11006601号-18

    闵涛站盟:医药大全-武穴网A打造BCD……
    咸宁网络警察报警平台