Hi Experts,
i have created a DLL in Visual Studio 2008 Express and i have made reference to it, But i cannot get the value of string readValue.
This is my DLL...
I can call RegCheck() but i cannot get readValue
Is there something i need to declare ?
If anyone can enlighten me on how to get this value i would be extremely
greatfull as i have searched for days.
Thankyou,
Gobble.
i have created a DLL in Visual Studio 2008 Express and i have made reference to it, But i cannot get the value of string readValue.
This is my DLL...
Code:
Public Class Class1
Public Sub RegCheck()
Dim readValue As String
readValue = My.Computer.Registry.GetValue("HKEY_CURRENT_USER\Software\MySoft", "SomeKey", Nothing)
End Sub
End Class
Code:
Imports Trial
Dim ck As New Trial.Class1
ck.RegCheck()
If anyone can enlighten me on how to get this value i would be extremely
greatfull as i have searched for days.
Thankyou,
Gobble.
Comment