User authentication in matlab GUI

조회 수: 7 (최근 30일)
maroua maro
maroua maro 2014년 5월 22일
댓글: hamzaoui zakaria 2020년 2월 6일
dans un GUI matlab d'authentification (login et mot de passe) comment peut je créer le champ de mot de passe (quand l'utilisateur fait le saisie de mot de passe les caractére ne s'affiche pas) merci d'avance de me repondre

채택된 답변

Romain
Romain 2014년 5월 22일
Sinon, j'ai aussi trouver ce script qui permet de faire ça :
function passwordDemo
f = figure;
pwd = javax.swing.JPasswordField;
[hComp,hContainer]= javacomponent(pwd,[100,100,200,20],f);
set(hComp,'ActionPerformedCallback',@passwordEntered);
function passwordEntered(varargin)
disp(['The password entered was ', char(hComp.getText)])
end %passwordEntered
end %passwordDemo
Si cela peut aider.
  댓글 수: 1
hamzaoui zakaria
hamzaoui zakaria 2020년 2월 6일
tu peux nous expliquer les fonctions svp

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by