ACC97: Documentation Error in "OldValue Property" Help TopicLast reviewed: October 31, 1997Article ID: Q175961 |
The information in this article applies to:
SUMMARYModerate: Requires basic macro, coding, and interoperability skills. In the sample code in the Microsoft Access 97 "OldValue Property" Help topic that reads as follows, the last line before the End Sub statement (Next ctl) is incorrect:
Sub btnUndo_Click() Dim ctlTextbox As Control For Each ctlTextbox in Me.Controls If ctlTextbox.ControlType = acTextBox Then ctlTextbox.Value = ctl.OldValue End If Next ctl End SubThe correct code is as follows:
Sub btnUndo_Click() Dim ctlTextbox As Control For Each ctlTextbox in Me.Controls If ctlTextbox.ControlType = acTextBox Then ctlTextbox.Value = ctl.OldValue End If Next ctlTextbox End SubNote that the correct syntax for the last line before the End Sub statement is Next ctlTextbox, not Next ctl.
REFERENCESFor more information about the OldValue Property, search the Help Index for "OldValue," or ask the Microsoft Access 97 Office Assistant.
|
Additional query words: inf documentation
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |