I have a Sub that takes some time to process. I want an image that says "Please Wait" to appear on top of the form while processing and then disappear. I have tried this code but it is not working:
Private Sub UserForm_Initialize ()
Image1.visible=False
End Sub
Sub CommandButton1_Click ()
Image1.visible=True
'Here goes the process
Image1.visible=False
End Sub
Is that possible?