Displaying values in static box for values in pop up menu !!

11 vues (au cours des 30 derniers jours)
chamant swarup
chamant swarup le 3 Mai 2019
Commenté : Rik le 3 Mai 2019
Hello all !!
I am actually trying to create a GUI where i need to display certain values in static box for each chose value in pop up menu .
For example : When chosen 1 should display 1000 in static box and so on ,
i have written the following code in the call back of pop up menu with tag name popupmenu1 and staticbox with tag name text2 , the programs works fine but is not displaying the assigned values to static box !
Where am i going wrong ? Any sort of help is appreciated.
function popupmenu1_Callback(hObject, eventdata, handles)
a= get(handles.popupmenu1,'value');
if a==1
set(handles.text2,'value',1000);
end
if a==2
set(handles.text2,'value',1200);
end
if a==3
set(handles.text2,'value',3000);
end
if a==4
set(handles.text2,'value',4000);
end

Réponse acceptée

Rik
Rik le 3 Mai 2019
Modifié(e) : Rik le 3 Mai 2019
There is a difference between the Value property and the String property. Also, you're better off using switch (which will make your code cleare), or a dictionary instead of a list of ifs.
function popupmenu1_Callback(hObject, eventdata, handles)
switch get(handles.popupmenu1,'Value');
case 1
set(handles.text2,'String',1000);
case 2
set(handles.text2,'String',1200);
case 3
set(handles.text2,'String',3000);
case 4
set(handles.text2,'String',4000);
end
Or with a dictionary:
function popupmenu1_Callback(hObject, eventdata, handles)
dict={1000,1200,3000,4000};
set(handles.text2,'String',dict(get(handles.popupmenu1,'Value')));
end
  2 commentaires
chamant swarup
chamant swarup le 3 Mai 2019
Modifié(e) : chamant swarup le 3 Mai 2019
perfect thanks for ur insights ! but what is the diffrence i used value because the data in pop up menu is number ? doesnt that work that way ?
For suppose i need to display "consumption = 1000Kwh/annum" instead of "1000"
will that change ?
Rik
Rik le 3 Mai 2019
The Value property of a popupmenu describes the selected box. For other uicontrol types this meaning is different (for slider it returns the selected position, for radio it is the value of min when not selected and max when selected, ditto for checkbox, etc).
The String property is the string/char array that is displayed as the text of a uicontrol element. You can use something like the code below.
function popupmenu1_Callback(hObject, eventdata, handles)
dict={1000,1200,3000,4000};
str=sprintf('consumption = %.0fKwh/annum',...
dict(get(handles.popupmenu1,'Value')));
set(handles.text2,'String',str);
end

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by