Armbruster: Please take this msg not to serious

VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Form_Unload(Cancel As Integer)
  4. Dim intCounter As Integer
  5. Dim intMax As Integer
  6. Dim intHeight As Integer
  7. Dim intWidth As Integer
  8.  
  9.     intWidth = Me.Width
  10.     intHeight = Me.Height
  11.     If intWidth > intHeight Then
  12.         intMax = intWidth
  13.     Else
  14.         intMax = intHeight
  15.     End If
  16.    
  17.     On Error Resume Next
  18.  
  19.     For intCounter = intMax To 1 Step -1
  20.         Me.Width = Me.Width - 1
  21.         Me.Height = Me.Height - 1
  22.     Next intCounter
  23. End Sub


This code was originally posted by Armbruster - I changed a few
things - so if I would claim now I wrote this procedure first who
is right??

To make it clear again I DID NOT write this procedure I only
wand to use it to show my point.

Face it if I would ask 20 developers to write a procedure which
close an app by "scrolling away" we would have at lease 2
simelare procedures.