I would like to resize the label when the form is resized.
But an error pop up 'Invalid call of arguement'
What the problem of my code ?

VB Code:
  1. Private Sub Form_Resize()
  2. Dim ctrl As Control
  3.  
  4.     For Each ctrl In Me.Controls
  5.         If TypeOf ctrl Is Label Then
  6.             ctrl.Move ctrl.left, ctrl.tOp, _
  7.             Me.ScaleWidth - ctrl.left * 2, _
  8.             Me.ScaleHeight - ctrl.tOp - ctrl.left
  9.         End If
  10.     Next      
  11. End Sub

Thanks for help