SaveSetting statement

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am about to incorporate the following code into a module:

SaveSetting "Dane Prairie Systems", "Win2PDF", "PDFFileName",
strTempFile

From the help file I can see that every time this code runs it will make an
entry in the computer's Registry. The strTempFile variable will be different
every time.

Does this mean that the Registry will get clogged up with an accumulation of
entries? Should I also use the DeleteSetting statement every time?

Thanks in advance.
 
Only one value will be saved in the registry. Each time you call the
SaveSetting method, it'll overwrite what's already there.
 
Back
Top