A family of Microsoft relational database management systems designed for ease of use.
ZoomBox: Interesting ... and something I have never used.
I'm imagining this could be used in the instance of a GotFocus Event for a Memo field (or even a text field with 255 characters) on a form ...
(perhaps even on a datasheet-style subform?)
Yeah ... I just tried it using a memo field on a datasheet subform and it works slick!:
Private Sub CallNotes_GotFocus()
If Len(Me!CallNotes) > 10 Then
RunCommand acCmdZoomBox
End If
End Sub