You may receive the "Run-time error -2147467259" error message when you open a form by using Automation in Visual Basic .NET (286126)
The information in this article applies to:
- Microsoft Office Access 2003
- Microsoft Access 2002
This article was previously published under Q286126 Moderate: Requires basic macro, coding, and interoperability
skills. This article applies only to a Microsoft Access database (.mdb).
For a Microsoft Access 2000 version of this article,
see
209157. SYMPTOMSWhen you open Microsoft Access and a form through
Automation and set focus to the form's custom menu bar, you receive the
following Microsoft Visual Basic error message: Run-time
error '-2147467259 (80004005)': Method 'SetFocus' of object
'CommandBarPopup' failed CAUSESetFocus fails because the control (in this case the menu bar) is not
visible in the user interface at the time that the Automation code is
executing. RESOLUTIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers 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 requirements. To work around this behavior, use either of the
following methods. Method 1: Trap for the Error Enter a function similar to the following:
Function AutomationTest()
On Error GoTo AutomationErr
<Automation code goes here>
AutomationExit:
Exit Function
AutomationErr:
If Err.Number = -2147467259 Then
Resume 'until control is visible.
Else
<handle any other errors>
End If
End Function
Method 2: Insert a Time Delay Set focus by using code behind the form instead of the Automation
code. For example, set the form's TimerInterval to 1000 (the value assigned may vary), and then add the following
code to the form:
Private Sub Form_Timer()
Me.TimerInterval = 0
Application.CommandBars.ActiveMenuBar.Controls(1).SetFocus
End Sub
Modification Type: | Major | Last Reviewed: | 6/23/2005 |
---|
Keywords: | kbProgramming kbAutomation kberrmsg kbprb KB286126 kbAudDeveloper |
---|
|