Effacer les filtres
Effacer les filtres

If statement error code mistake - string input too long not working...

1 vue (au cours des 30 derniers jours)
Muaaman
Muaaman le 17 Déc 2014
Modifié(e) : per isakson le 18 Déc 2014
I essentially have this as code in the GUIDE GUI pushbutton1_Callback. Error Code II is not working properly. Even if I enter in say "Bob" in the empty textbox and push the button, its giving me Error Code II (the elseif statement). What's the issue here? Input would be greatly appreciated.
if isempty(editString)
errordlg('Please enter a name into the text-box. ...','ErrorCode I');
return
elseif char(editString) > 12
errordlg('Please enter a name with less than 12 characters. ', ...
'Error Code II');
else
delete(gcf)
gui_02
end

Réponses (1)

per isakson
per isakson le 18 Déc 2014
Modifié(e) : per isakson le 18 Déc 2014
elseif char(editString) > 12
I guess your intention is
elseif length(editString) > 12

Catégories

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

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by