Static Text update according to GUI List box callback

2 vues (au cours des 30 derniers jours)
Muhammad Salman Arif
Muhammad Salman Arif le 19 Sep 2019
I am trying to update my static text with tag text105 on my gui according to the value selected from the list box. The code I have developed is below, but it failed to display the value. Kindly spot the error.
function listbox1_Callback(hObject, eventdata, handles)
a=get(handles.listbox1,'value')
if (a==Natural-Gas)
Cv=12500;
set(handles.text105,'string',Cv)
drawnow;
elseif (a==Propane-Butane)
Cv=11950;
set(handles.text105,'string',Cv)
drawnow;
elseif (a==Fuel-Oil)
Cv=9520;
set(handles.text105,'string',Cv)
drawnow;
elseif (a==Diesel)
Cv=1000;
set(handles.text105,'string',Cv)
drawnow;
elseif (a==Brown-Coal)
Cv=3500;
set(handles.text105,'string',Cv)
drawnow;
elseif (a==Woods)
Cv=2500;
set(handles.text105,'string',Cv)
drawnow;
elseif (a==Electricity)
Cv=860;
set(handles.text105,'string',Cv)
drawnow;
end

Réponses (1)

BhaTTa
BhaTTa le 12 Juin 2025
Hey @Muhammad Salman Arif, You’re comparing the index (a) to literal strings like Natural-Gas, which is incorrect. The Value property returns an integer (the selection index), not the string itself. Also, you're using unquoted identifiers like Natural-Gas, which is incorrect

Catégories

En savoir plus sur Loops and Conditional Statements 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