How to Set User Name and Password in GUI ..... password must be invisbile..... pls brefily explain about any one about code

조회 수: 5 (최근 30일)
dear friends. i want to set a username and password for the login form with invisible password code .... anyone know this
pls send code and explain brefily......hope reply will come soon
  댓글 수: 1
lakshmana prabu
lakshmana prabu 2016년 1월 4일
편집: Walter Roberson 2016년 1월 4일
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
sir i dont know to create user name function but i set password but its visible i need to invisible to show the password so u try to send full code sir... actually i search in file exchange but the code not much more worth. so pls

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2016년 1월 4일
Search the File Exchange for "password"
  댓글 수: 1
lakshmana prabu
lakshmana prabu 2016년 1월 4일
편집: Walter Roberson 2016년 1월 4일
=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
sir i dont know to create user name function but i set password but its visible i need to invisible to show the password so u try to send full code sir... actually i search in file exchange but the code not much more worth. so pls

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by