Feb 5, 2003 #1 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
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
Feb 5, 2003 1 #2 rorubin Programmer Jan 31, 2003 255 US Dim WSHShell: Set WSHShell = CreateObject("WScript.Shell" then use WSHShell.RegWrite and WSHShell.RegRead Upvote 0 Downvote
Dim WSHShell: Set WSHShell = CreateObject("WScript.Shell" then use WSHShell.RegWrite and WSHShell.RegRead
Feb 5, 2003 1 #3 zemp Programmer Jan 27, 2002 3,301 CA You can use the RegCreateKey, RegDeleteKey, RegDeleteValue, RegOpenKey, and others API functions. There was a tutorial at http://www.vb-world.net. Yopu can see if it is still there. Thanks and Good Luck! zemp Upvote 0 Downvote
You can use the RegCreateKey, RegDeleteKey, RegDeleteValue, RegOpenKey, and others API functions. There was a tutorial at http://www.vb-world.net. Yopu can see if it is still there. Thanks and Good Luck! zemp
Feb 5, 2003 Thread starter #4 rdavis Programmer Apr 29, 2002 157 US Thank you both for the reply. Now, which would be the better of the two? Upvote 0 Downvote
Feb 5, 2003 #5 rorubin Programmer Jan 31, 2003 255 US That is for you to decide. Either will work Upvote 0 Downvote