Originally Posted by
RamyMahrous
Put your key in array
Dim key As String(numberOfKeys) then loop and once you get value put it into ComboBox or any control you present data into
Dim registrykeys(5) As String
'fill your keys
For Each key As String In registrykeys
ComboBox1.Items.Add(My.Computer.Registry.GetValue(key, "property", "default"))
Next
Your array may be 2D to maintain the property of keys
Hi thanks for the reply.
I am new to vb.net so bear with me : ).
Now in that part of the reg i am looking the keys can be different depending on the installed programs.
So i cannot just add the exact key to read.
Last edited by smelf1; Jan 6th, 2009 at 11:17 am.