In ACCESS, create a form, add 2 labels and a sub to handle the resize event:<br>
<br>
Private Sub Form_Resize()<br>
Me.Label0.Caption = Me.Width<br>
Me.Label1.Caption = Me.Detail.Height<br>
Beep<br>
End Sub<br>
<br>
Open the form & the Width/Height values are correct. Resize the form, it beeps and does not change the Width/Height values!