Hi everyone!!! I have edit text box in GUI and I want to hiding all words as password (like ***) so how to do it??
Thanks

3 commentaires

orlando morales andrade
orlando morales andrade le 3 Mar 2017
The easiest way is to set the text font(change arial for Webdings) to something like symbols then you get some squares in the edit field.
geo marian
geo marian le 9 Sep 2017
it works thanks!!
mokhtarmatlab
mokhtarmatlab le 23 Avr 2020
thanks

Connectez-vous pour commenter.

 Réponse acceptée

Stephen23
Stephen23 le 14 Déc 2015

1 vote

3 commentaires

lakshmana prabu
lakshmana prabu le 4 Jan 2016
Modifié(e) : Walter Roberson le 3 Mar 2017
Stephen Codeldick ur link superb ... but i need a user name and pwd for GUI matlab ... not login in dialoug box
a=get(handles.edit1,'string');
b='123456';
l=strcmp(a,b);
if l==1
msgbox('rightpwd');
set(handles.edit1,'string','');
else
msgbox('wrong pwd');
set(handles.edit1,'string','');
end
this is my code k but in this i wanna to add username... i set password but its visible but i need to show invisible so try to help me Stephen Cobeldick
Jan
Jan le 3 Mar 2017
@lakshmana prabu: But the links contain code, which solves exactly your problem. Please try them. You can easily modify them and adjust them to your needs.
AJEET KUMAR
AJEET KUMAR le 4 Fév 2020
Hi,
How can I put password and it should show "******" for each character in the box?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scripts dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by