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 件のコメント

orlando morales andrade
orlando morales andrade 2017 年 3 月 3 日
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 2017 年 9 月 9 日
it works thanks!!
mokhtarmatlab
mokhtarmatlab 2020 年 4 月 23 日
thanks

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

 採用された回答

Stephen23
Stephen23 2015 年 12 月 14 日

1 投票

3 件のコメント

lakshmana prabu
lakshmana prabu 2016 年 1 月 4 日
編集済み: Walter Roberson 2017 年 3 月 3 日
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 2017 年 3 月 3 日
@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 2020 年 2 月 4 日
Hi,
How can I put password and it should show "******" for each character in the box?

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by