Borrar filtros
Borrar filtros

waitbar not on top

2 visualizaciones (últimos 30 días)
Denis
Denis el 8 de Jul. de 2015
Comentada: Denis el 8 de Jul. de 2015
Hi,
I have a code that has many computation steps, each with a waitbar that open and close. My problem is that it is not possible to work on other apps, like outlook or word, since the waitbar when created always appears on top and get the focus.
Is there a way to create the waitbar but do not change the window focus?
Best Regards,
Denis

Respuestas (1)

Joseph Cheng
Joseph Cheng el 8 de Jul. de 2015
In your implementation do you need to close and create a new waitbar? can you re-purpose the existing waitbar to encompass the other computation steps?
h = waitbar(0,'Please wait...');
steps = 1000;
for step = 1:steps
% computations take place here
waitbar(step/steps,h,['computing 1: ' num2str(step)])
end
for step = 1:steps
% computations take place here
waitbar(step/steps,h,['computing 2: ' num2str(step)])
end
for step = 1:steps
% computations take place here
waitbar(step/steps,h,['computing 3: ' num2str(step)])
end
close(h)
  1 comentario
Denis
Denis el 8 de Jul. de 2015
Thank you for your answer but unfortunately I cannot apply it to my specific case. Actually, the program is quite complex dans divided in subprogram that call subfunctions, a few calling waitbars, and a kind of batch launches several subprogam in series. Therefore, it is a bit tough to put a kind of global variable for the waitbar handle.
I wonder whether a waitbar property unknown from me may address my problem.

Iniciar sesión para comentar.

Categorías

Más información sobre Dialog Boxes en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by