03-04-2016 06:48 AM
I am starting to put together some GUI's which allow my coworkers to select different processing scripts and one of the comments that has come up is if there is away for me to display that the script is processing.
Any ideas?
I know I could display a pop up box that it has completed but they were looking for something that tells them it is processing.
Thanks
Solved! Go to Solution.
03-04-2016 07:06 AM
There is a very simple solution that is an non modal message box.
Option Explicit MsgBoxDisp "Processing", "MB_NOBUTTON", "MsgTypeNote", , , TRUE MsgBox "This is your script" MsgBoxCancel
03-04-2016 07:26 AM
exactly what I needed!
Thanks!