ZoomInDone example for Visual Basic

Note: Also works with Access 95 and 97.

This example triggers the ZoomInDone event and displays a message that the ZoomIn image has been captured.

Private Sub Lead1_ZoomInDone(ByVal x As Long, ByVal y As Long)
          MsgBox "ZoomIn Captured: " & CStr(x) & "," & CStr(y)
End Sub