Mushy peas
New Member
- Joined
- Jun 14, 2023
- Messages
- 33
- Office Version
- 2019
- 2016
- Platform
- Windows
I do not know if this is multithreading. But I would like to update my userform every 1/60th seconds when a long procedure is running. The structure of my code is something like this:
VBA Code:
VBA Code:
Code:
Sub LongProcedure()
LongProcedure1
LongProcedure2
LongProcedure3
End Sub
Sub UserFormUpdate()
' update userform here
' I would like to call this 60 times per second
End Sub