Errata

Access 2002 Desktop Developer's Handbook

Back to errata

Last updated 19 November 2001.

Chapter

Page

Where

Replace

With

8 (added 11/19/2001)     If you have floating controls and "Show window contents while dragging" is turned on in Windows, if you squish a form too small, you'll get into an infinite loop.

In FormResize.ScaleFormContents, replace this code:

If FloatThisControl(ctlr) Then
    cc = FloatTheControl(ctlr)
    ctl.Left = cc.Left
    ctl.Top = cc.Top
End If

With this code:

 

If FloatThisControl(ctlr) Then
    cc = FloatTheControl(ctlr)
    If cc.Left > 0 Then
        ctl.Left = cc.Left
    End If
    If cc.Top > 0 Then
        ctl.Top = cc.Top
    End If
End If
 

 

Back to errata