|
From: Jack on 16 Jul 2008 22:42 How to create .reg file which will add a string value to the existing key, without replacing the whole key? Jack
From: mayayana on 16 Jul 2008 22:51 If you want to do it in VB you don't need a ..reg file. See the RegSetValueEx function. There are probably good samples at Randy Birch's site: http://vbnet.mvps.org/ > How to create .reg file which will add a string value to the existing key, > without replacing the whole key? > Jack > >
From: Ralph on 16 Jul 2008 22:52 "Jack" <replyto(a)it> wrote in message news:%232mIKb75IHA.1280(a)TK2MSFTNGP02.phx.gbl... > How to create .reg file which will add a string value to the existing key, > without replacing the whole key? > Jack > You probably need to provide more information as adding and deleting, keys and values is a very straight-forward process: http://support.microsoft.com/kb/310516 What is it, you are really trying to do? -ralph
From: Jeff Johnson on 17 Jul 2008 00:40 "Jack" <replyto(a)it> wrote in message news:%232mIKb75IHA.1280(a)TK2MSFTNGP02.phx.gbl... > How to create .reg file which will add a string value to the existing key, > without replacing the whole key? By creating a .reg file. Seriously, I'm pretty sure you can only delete an entire key using a .reg file, not a single value. So unless you're TRYING to delete a key, you won't.
From: John John (MVP) on 17 Jul 2008 07:21
Jeff Johnson wrote: > "Jack" <replyto(a)it> wrote in message > news:%232mIKb75IHA.1280(a)TK2MSFTNGP02.phx.gbl... > > >>How to create .reg file which will add a string value to the existing key, >>without replacing the whole key? > > > By creating a .reg file. Seriously, I'm pretty sure you can only delete an > entire key using a .reg file, not a single value. So unless you're TRYING to > delete a key, you won't. You can delete Keys or single Values with a .reg file. John |