vb.net操作注册表的方法分析【增加,修改,删除,查询】
本文实例讲述了vb.net操作注册表的方法。分享给大家供大家参考,具体如下:
增加:
DimkeyAsMicrosoft.Win32.RegistryKey=Microsoft.Win32.Registry.LocalMachine.OpenSubKey("Software/Faxturer",True) DimsubkeyAsMicrosoft.Win32.RegistryKey subkey=key.CreateSubKey("Manu") subkey.SetValue("Path","d:/software/sdf",Microsoft.Win32.RegistryValueKind.String) 'reg.SetValue("path",NewString(){"d:/software/sdf","dfdf"},Microsoft.Win32.RegistryValueKind.MultiString)
修改:
DimkeyAsMicrosoft.Win32.RegistryKey=Microsoft.Win32.Registry.LocalMachine.OpenSubKey("Software/Faxturer",True) reg.SetValue("path","d:/software/sdf",Microsoft.Win32.RegistryValueKind.String)
删除:
DimkeyAsMicrosoft.Win32.RegistryKey=Microsoft.Win32.Registry.LocalMachine.OpenSubKey("Software/Faxturer",True) key.DeleteSubKey("Manu")
查询:
DimrkAsMicrosoft.Win32.RegistryKey=Microsoft.Win32.Registry.LocalMachine.OpenSubKey("Software/ManuFaxturer",True) DimsAsString()=rk.GetSubKeyNames() DimsubkeyAsMicrosoft.Win32.RegistryKey subkey=rk.OpenSubKey("Manu",False) MsgBox(rk.GetValue("Path"))'注册表根节点 MsgBox(subkey.GetValue("Path"))‘注册表子结点
希望本文所述对大家vb.net程序设计有所帮助。