Microsoft 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