set enable propeprty to off

8 views (last 30 days)
antonis
antonis on 1 Nov 2013
Commented: antonis on 1 Nov 2013
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?

Answers (2)

Doug Hull
Doug Hull on 1 Nov 2013
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 on 1 Nov 2013
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.

Categories

Find more on Simulink in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!