필터 지우기
필터 지우기

How to make a DropDown function control the visibility of a spinner in App designer

조회 수: 2 (최근 30일)
Hi,
I am New to App Designer and i would like to make one item in the DroppDown function to make a spinner visible. Is this possible? What I have tried so far is this:
Value= app.InstrumentDropDown.Value;
if Value==1
app.AntalldypSpinner.Visible='off'
elseif Value==2
app.instrument='D';
app.AntalldypSpinner.Visible='on'
elseif Value==3
app.instrument='D';
app.AntalldypSpinner.Visible='off'
elseif Value==4
app.instrument='R';
app.AntalldypSpinner.Visible='off'
end
but this only make the spinner disappear and it never shows up again. Can someone help me?

답변 (1개)

Tushar Upadhyay
Tushar Upadhyay 2017년 5월 2일
The app.InstrumentDropDown.Value might be giving value in "char" instead of numeric. Make sure that the value is numeric. If it is a char then change the If statement as below:
if Value=='1' app.AntalldypSpinner.Visible='off'
If that does not work, then add the debug point in the function and see if it is going into the appropriate conditional statement.

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by