How work with 2 popup menus

5 ビュー (過去 30 日間)
Jhon Rackham
Jhon Rackham 2019 年 9 月 1 日
コメント済み: Jhon Rackham 2019 年 9 月 2 日
Hi to everyone !
I need your help guys, i'am a beeginer in Matlab and i have a problem with my project:
Well, i have to create a program that converts whatever number set to the measures: (Kilometers, meters, centimeters and millimeters).
On mi GUI i have 2 edit text and 2 popupmenu
The idea is:
I put one numer on the edittext1 and i choose in the popupmenu1 what measure it is(Kilometers, meters, centimeters and millimeters).
Then, on the other popupmenu i choose what measure in want to convert and that value has to print on the edittext 2. is like google conversor.
I don't know how to work with 2 popupmenus, i hope you guys help me.
Have a good day. :D12.png

採用された回答

Image Analyst
Image Analyst 2019 年 9 月 2 日
編集済み: Image Analyst 2019 年 9 月 2 日
Try something like this
value = str2double(handles.edittext1.String)
if handles.popupmenu1.Value == 1
if handles.popupmenu2.Value == 1
convertedValue = value * 123.4567; % Or whatever it is.
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
elseif handles.popupmenu1.Value == 2
if handles.popupmenu2.Value == 1
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
elseif handles.popupmenu1.Value == 3
if handles.popupmenu2.Value == 1
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
elseif handles.popupmenu1.Value == 3
if handles.popupmenu2.Value == 1
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
elseif handles.popupmenu1.Value == 5
if handles.popupmenu2.Value == 1
elseif handles.popupmenu2.Value == 2
elseif handles.popupmenu2.Value == 3
elseif handles.popupmenu2.Value == 4
elseif handles.popupmenu2.Value == 5
end
end
handles.edittext2.String = sprintf('In those units, the value is %f', convertedValue)
Inside each if block, do the conversion, or get the scaling factor, for the relevant pair that was chosen.
  1 件のコメント
Jhon Rackham
Jhon Rackham 2019 年 9 月 2 日
Thanks a lot mate.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB Report Generator についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by