Application.ShowLoader appears to have changed

0
0

We have a WiseJ 3 application that we have recently upgraded to 3.2.7 (assuming this is the last stable release).

Some code that used to work, now seems to not.  It appears that MessageBox.Show() causes the state of Application.ShowLoader to reset to FALSE.  Which stops any user attempted setting to remove the loader to be ignored, and the loader will not remove.

e.g.

Application.ShowLoader = true;

MessageBox.Show(“Hello”, “WARNING”, icon: MessageBoxIcon.Warning);

Application.ShowLoader = false;

This code used to work, but now the last line does nothing.  It appears to be the call to MessageBox.Show() that changes the state for ‘ShowLoader’ from TRUE to FALSE.

A work-around is to do this:

Application.ShowLoader = true;
Application.ShowLoader = false;

But I don’t really want to do this everywhere we have similar code if this is a bug?

Best Regards,
Mark

  • You must to post comments
0
0

Hi Frank,

That’s great news!  Thanks for letting me know.

Regards,
Mark

 

  • You must to post comments
0
0

Hi Mark,

this issue is fixed and currently in QA.
We’ll inform you when a new version is released.

Best regards
Frank

  • You must to post comments
0
0

Hi Mark,

thanks for reporting this issue. I could reproduce it and we’re now investigating further.
We’ll keep you updated.

Best regards
Frank

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.