Private Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Dim I As Integer
[COLOR="Red"]UserForm2.Hide[/COLOR]
For I = 1 To 8
UserForm2.Controls("Label" & I).Caption = ""
Next I
' For I = 1 To 31
' With Controls("LBSilo" & I)
' .Width = 42
' .Visible = True
' .Font.Size = 10
' End With
' Next I
End Sub