ACC2000: GotoRecord Macro Action Behaves UnexpectedlyID: Q208605
|
The GotoRecord macro action doesn't behave as you would expect when you use it in an AutoKeys macro. Instead of changing the record of the active form, it changes the record of a form in the background.
These symptoms occur when you use the GotoRecord action in an AutoKeys macro while a form is open with a Timer event running.
Microsoft provides programming examples for illustration only, without warranty
either expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes that you
are familiar with the programming language being demonstrated and the tools used to
create and debug procedures. Microsoft support professionals can help explain the functionality
of a particular procedure, but they will not modify these examples to provide added
functionality or construct procedures to meet your specific needs. If you have limited
programming experience, you may want to contact a Microsoft Certified Solution Provider
or the Microsoft fee-based consulting line at (800) 936-5200. For more information about
Microsoft Certified Solution Providers, please see the following page on the World Wide Web:
http://www.microsoft.com/mcsp/For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/overview/overview.aspTo achieve the desired result of selecting the next or previous record on the active form when you press a predefined key, follow these steps:
Option Explicit
Function GotoPreviousRecord()
On Error Goto GotoPreviousErrorHndlr
' Screen.ActiveForm.Name forces the GotoRecord action
' to be applied to the active form.
DoCmd.GoToRecord acForm, Screen.ActiveForm.Name, acPrevious
ExitGotoPreviousRecord:
Exit Function
GotoPreviousErrorHndlr:
MsgBox Error$
Resume ExitGotoPreviousRecord
End Function
Function GotoNextRecord()
On Error Goto GotoNextErrorHndlr
' Screen.ActiveForm.Name forces the GotoRecord action
' to be applied to the active form.
DoCmd.GoToRecord acForm, Screen.ActiveForm.Name, acNext
ExitGotoNextRecord:
Exit Function
GotoNextErrorHndlr:
MsgBox Error$
Resume ExitGotoNextRecord
End Function
CAUTION: Following the steps in this example will modify the sample
database Northwind.mdb. You may want to back up the Northwind.mdb file
and perform these steps on a copy of the database.
Private Sub Form_Timer()
Me![CurrentTime] = Now()
End Sub
'This procedure updates the time in the CurrentTime control once every
'second.
Macro Name Action
----------------------
{F2} GotoRecord
{F3} GotoRecord
{F2} Actions
-----------
GotoRecord
Record: Previous
{F3} Actions
-----------
GotoRecord
Record: Next
For more information about AutoKeys, click Microsoft Access Help on the
Help menu, type "AutoKeys" in the Office Assistant or the Answer Wizard,
and then click Search to view the topic.
Additional query words: prb
Keywords : kbdta McrProb
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: July 6, 1999