Resize event example for Access 95 and 97

This example demonstrates the Resize event.

Private Sub Lead1_Resize()
    'Before using this example you must add a text box to your form.
    'Then, you can exercise this example by coding a command button that 
    'changes the width and height of the Lead1 control
    Text1.Value = "Control size: " + CStr(Me![Lead1].Width) + " x " + CStr(Me![Lead1].Height)
End Sub