User authentication in matlab GUI
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
maroua maro
am 22 Mai 2014
Kommentiert: hamzaoui zakaria
am 6 Feb. 2020
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
0 Kommentare
Akzeptierte Antwort
Romain
am 22 Mai 2014
Des sujet en parle déjà : http://www.mathworks.com/matlabcentral/answers/20400-encryption-of-password
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 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!