User authentication in matlab GUI

5 views (last 30 days)
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

Accepted Answer

Romain
Romain on 22 May 2014
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.

More Answers (0)

Categories

Find more on Language Fundamentals in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!