V2018.1 working much, much better and the progress bar is a very nice feature.
One note and not really big deal, just letting you know: When exiting / closing software the splash screen appears in brief flash. Again, not a big deal.
Thanks for fixing and adding the progress bar!
EDIT / UPDATE: Seems using exit confirmation script is causing the splash screen to briefly appear when clicking Yes. If you click No, splash screen appears with progress bar and stays.
Here is my scripting if you wish to try to replicate:
function OnWindowCloseQuery (WindowName: String): Boolean;
begin
// When a window is closed by the user.
// Ask user if they really wish to close window
Result := True;
if MessageBox(“Exit Software?”#13#10#13#10"Save Your Work Sheet? Click Yes to Exit!"#13#10#13#10"No to Cancel & Then Go Save…",
“Exit Confirmation”, MB_YESNO+MB_ICONWARNING) = IDNO then Result := False;
end;