ACC95: "SaveSetting" Example in Help Has Incorrect Syntax

ID: Q145657


The information in this article applies to:
  • Microsoft Access 7.0


SYMPTOMS

Moderate: Requires basic macro, coding, and interoperability skills.

The first line of code in the "SaveSetting Statement Example" Help topic in the Microsoft Access for Windows 95 Help system reads as follows:


   SaveSetting(appname := "MyApp", section := "Startup", _
   key := "Top", setting := 75) 
This syntax is incorrect.


RESOLUTION

The correct syntax is as follows:


   Call SaveSetting(appname := "MyApp", section := "Startup", key := "Top",
   setting := 75) 
-or-

   SaveSetting appname := "MyApp", section := "Startup", key := "Top",
   setting:= 75 


REFERENCES

For more information about the SaveSetting statement, search on the phrase "SaveSetting," and then view "SaveSetting statement" using the Answer Wizard from the Microsoft Access for Windows 95 Help menu.

Additional query words:

Keywords : kbusage
Version : 7.0
Platform : WINDOWS
Issue type :


Last Reviewed: December 2, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.