Private Sub VerificaAltura()
Label1.Height = Entero(TextWidth(Label1.Caption) _
/ Label1.Width) * TextHeight(Label1.Caption)
End Sub
Private Function Entero(nUm As Single)
'Redondea al número entero superior
If nUm - Int(nUm) > 0 Then
Entero = Int(nUm) + 1
Else
Entero = Int(nUm)
End If
End Function