I put this code in just to see how many times form_resize actualy gets called...
VB Code:
  1. Dim intSize As Integer
  2.  
  3. Private Sub Form_Resize()
  4.     intSize = intSize + 1
  5.     Me.Caption = intSize
  6. End Sub

If you maximize the form it only gets called once but if you resize it using the mouse it can get called 100+ times... So I guess we do need the DeleteObject...