?Is it correct that DeleteSettings in VB4 doesn't work (invalid procedure
?call), instead of the example in the HELP-file (F1)
It's been a while but ISTR that the VB4 docs for that
were a little strange. Check for parentheses. It
should be something like this:
DeleteSetting appname, section, key
or
Call DeleteSetting(appname, section, key)
not
DeleteSetting (appname, section, key)
--
Paul Marshall