I've created a small GUI to manipulate data and recently I decided to move the database to a MySQL server. I created a Java program to bring the data back and forth and I started to notice the delay when access servers abroad.
When you run scripts through the command window Matlab displays a "busy" text in the lower left corner but not when I'm running GUIs.
So how do I know if Matlab is busy when using GUIs?
Thanks in advance.
Edit: Quick example.
I run in the command window (or a script test.m)
for i = 1:100000
a = i+i;
disp(a);
end
The status bar says "Busy".
When I create a GUI, with the button "Click me" that executes the same exact script. The busy sign on the status bar does not appear.
Why is this and what can I do about it? I want to be able to see if my GUI is busy or not.