A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Copy that sub in a regular module
Rename it as ReloadPictures, and make it public
Replace "Me" with the name of your userform (e.g "Userform1")
Add the line
On Error Goto ExitPoint
at the top and
Application.OnTime Now+TimeSerial(0,0,30), "ReloadPictures"
ExitPoint:
at the bottom. Use this sub in your form
Private Sub UserForm_Activate()
ReloadPictures
End Sub
Andreas.