Restore what Image? If you what you're trying to do is make Images appear if the Mouse is over a certian Image, you can use this code.

Code:
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)

    'Make the other images INVISIBLE when the Mouse moves on the Form
    MyOtherImages.Visible = False
    
End Sub

Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)

    'Make the other images VISIBLE when the Mouse moves on this Image
    MyOtherImages.Visible = True
    
End Sub