Registry Editing

R

R Avery

In many places on the WWW, I have read that it would be wise to back up
the Registry before making alterations to it. Why? Assuming the user
knows exactly what he/she is doing, what harm could come of it?

That being said, is it perfectly safe to use the SaveSetting,
GetSetting, etc functions so long as you use it for your own App Names?
 
F

Frank Kabel

Hi
this is always a good advice as if you're using registry tools
something could go wrong. That said it should be really safe to use
GetSetting and SaveSetting in your Excel application!

--
Regards
Frank Kabel
Frankfurt, Germany

R Avery said:
In many places on the WWW, I have read that it would be wise to back up
the Registry before making alterations to it. Why? Assuming the user
knows exactly what he/she is doing, what harm could come of it?

That being said, is it perfectly safe to use the SaveSetting,
GetSetting, etc functions so long as you use it for your own App
Names?
 
C

Chip Pearson

Assuming the user
knows exactly what he/she is doing, what harm could come of it?

That is a BIG assumption. There is nothing wrong with playing
directly with the Registry, but you have to know what you're
doing. One mistake in the wrong place can cause lots of
problems.
That being said, is it perfectly safe to use the SaveSetting,
GetSetting, etc functions so long as you use it for your own
App Names?

Yes.



--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


R Avery said:
In many places on the WWW, I have read that it would be wise to back up
the Registry before making alterations to it. Why? Assuming the user
knows exactly what he/she is doing, what harm could come of it?

That being said, is it perfectly safe to use the SaveSetting,
GetSetting, etc functions so long as you use it for your own
App Names?
 
B

Bob Phillips

A car is perfectly safe in the hands of someone who is careful, knows how to
drive , etc., but there are still accidents.

GetSetting and SaveSetting are a VBA interface to the registry, and in a
very restricted part of the registry, so you will be okay.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Top