My.Computer.Registry.GetValue : Registry « Windows « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Windows » Registry 
24.11.6.My.Computer.Registry.GetValue
Option Strict On

Public Module RegistryTest
   Public Sub Main()
      Dim data As Object
      data = My.Computer.Registry.GetValue("HKEY_CLASSES_ROOT\wrifile\DefaultIcon", _
                                            String.Empty, String.Empty)

      If TypeOf data Is String Then
         Console.WriteLine("String data: " & data.ToString())
      ElseIf TypeOf data Is Integer Then
         Console.WriteLine("Integer data: " & CInt(data))
      ElseIf TypeOf data Is String() Then
         Console.WriteLine("String array: ")
         Dim dataArray() As String = DirectCast(data, String())
         For ctr As Integer = LBound(dataArray, 1To UBound(dataArray, 1)
            Console.WriteLine(" " & dataArray(ctr))
         Next
      ElseIf typeOf data Is Byte() Then
         Console.WriteLine("Binary data: ")
         Dim byteArray() As Byte = DirectCast(data, Byte())
         For ctr As Integer = LBound(byteArray, 1To UBound(byteArray, 1)
            Console.Write(" " & Hex(byteArray(ctr)) " ")
         Next
      Else
         Console.WriteLine("Unknown data type...")
      End If
   End Sub
End Module
String data: "C:\Program Files\Windows NT\Accessories\WORDPAD.EXE",2
24.11.Registry
24.11.1.Get value from Registry with default value
24.11.2.Get string value from Registry
24.11.3.Set Registry value
24.11.4.Set value from Registry using My.Computer.Registry
24.11.5.Save value to Registry: RegistryValueKind.DWord, RegistryValueKind.String, RegistryValueKind.Binary, RegistryValueKind.MultiString
24.11.6.My.Computer.Registry.GetValue
24.11.7.CPU information from Registry 1
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.