get information from popup menu without pushbotton GUI

조회 수: 3 (최근 30일)
Kamuran
Kamuran 2016년 1월 20일
댓글: Kamuran 2016년 1월 20일
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
Kamuran
Kamuran 2016년 1월 20일
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

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by