Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Registry 2

Status
Not open for further replies.

rdavis

Programmer
Apr 29, 2002
157
US
Is there a way to put something in the registry and have it NOT show up under 'VB and VBA program settings', but under your own setting name?

Thanks in Advance,

Rob
 
Dim WSHShell: Set WSHShell = CreateObject("WScript.Shell")

then use

WSHShell.RegWrite
and
WSHShell.RegRead
 
You can use the RegCreateKey, RegDeleteKey, RegDeleteValue, RegOpenKey, and others API functions. There was a tutorial at Yopu can see if it is still there. Thanks and Good Luck!

zemp
 
Thank you both for the reply. Now, which would be the better of the two?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top