get information from popup menu without pushbotton GUI

3 visualizaciones (últimos 30 días)
Kamuran
Kamuran el 20 de En. de 2016
Comentada: Kamuran el 20 de En. de 2016
Hello, I am developing a GUI and I want an input field to be blocked for one value of the popup menu (last one) so in the opening fcn I wrote
if true
popvalue=get(handles.popmenu,'Value');
if popvalue~=7
set(handles.edit,'enable','off')
end end
Right now when the program starts editbox is not available to edit . What I want to do (if possible), if the user changes the value of the popup menu I would like to capture that without a pushbotton. Change of the popup menu value will check and update the editbox status. Or I have to do this in two steps, like a pushbotton for enabling the editbox.
  1 comentario
Kamuran
Kamuran el 20 de En. de 2016
Nevermind I found the solution ...if anybody is interested
if true
popvalue=get(handles.popmenu,'Value')
if popvalue~=7
set(handles.edit,'enable','off')
else
set(handles.edit''enable','on')
end
you put is in the callback function of popupmenu

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by