Article ID: 132010
Article Last Modified on 1/19/2007
Private Sub Form_Activate()
' In version 2.0, the DoCmd is written DoCmd <command>
Me.TimerInterval=500
DoCmd.ShowToolbar "Form View", A_TOOLBAR_NO
End Sub
Private Sub Form_Timer()
' In version 2.0, the DoCmd is written DoCmd <command>
DoCmd.MoveSize 0, 0
Me.TimerInterval=0
End Sub
Private Sub Form_Activate()
' In version 2.0, the DoCmd is written DoCmd <command>
Application.SetOption "Built-In Toolbars Available", False
DoEvents
Application.SetOption "Built-In Toolbars Available", True
DoCmd.ShowToolbar "Form View", A_TOOLBAR_NO
DoCmd.MoveSize 0, 0
End Sub
Private Sub Form_Activate()
' In version 2.0, the DoCmd is written DoCmd <command>
DoCmd.ShowToolbar "Form View", A_TOOLBAR_NO 'Hide Form view toolbar
DoCmd.MoveSize 0, 0 ' Position the form at the top of the screen.
End Sub
Keywords: kbprb KB132010