set enable propeprty to off

In a gui i have a button which executes a simulation that lasts ~ 20sec. During this period i want the button to be disabled, so i have written in buttons callback:
set(hObject,'Enable','off'); simulation(); set(hObject,'Enable','on');
It doesnt work. It seems that that the set method operates after the end of simulation because if i write set(hObject,'Enable','off');simulation(); the button is disabled after the simulation finishes!!!
Why please?

Antworten (2)

Doug Hull
Doug Hull am 1 Nov. 2013

0 Stimmen

You might want to put a DRAWNOW before simulation. It could help to ensure the GUI is updated before simulation is called.
Image Analyst
Image Analyst am 1 Nov. 2013

0 Stimmen

Call drawnow to force an update/refresh/repaint:
set(hObject,'Enable','off');
drawnow;
simulation();
set(hObject,'Enable','on');
The problem is that it got into your intensive simulation right away before the message to gray out your button was processed. Basically it sends a message to the operating system to disable that button, and the operating system can decide when it wants to act upon that message. But meanwhile your MATLAB script barrels on doing your simulation and the operating system thinks that is a higher priority process so it does that first and will get around to disabling your button whenever it thinks it has time to do so. Calling drawnow forces it to do that right away before it can move on to the next thing.

Kategorien

Mehr zu Simulink finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 1 Nov. 2013

Kommentiert:

am 1 Nov. 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by