Place a Timer on your form and call it TmrLabel then add this code:
VB Code:
  1. Private Sub TmrLabel_Timer()
  2. Static Times As Integer
  3.    
  4.     If Times = 10 Then ' Change 10 to the amount of steps you want!
  5.         'Hide the other form...
  6.         Form2.Visible = False
  7.        
  8.         'Disable the Timer...
  9.         TmrLabel.Enabled = False
  10.        
  11.         'Set Times to zero so it can be run again...
  12.         Times = 0
  13.     Else
  14.         'Do the code to make the label smaller...
  15.        
  16.        
  17.         'Increment the counter...
  18.         Times = Times + 1
  19.     End If
  20. End Sub
Hope that helps you, I didn't do the code for shrinking the label because I wasn't sure how your going about that .