From: Shabnam Shaikh on
hi guys...
m making a project using gui as my front end of matlab...My project requires my first page as logn id and password....
i m facing difficulty in setting passwords....I m very new to it...
so plz tell me what property should i use to set password in it????
From: ImageAnalyst on
http://www.mathworks.com/matlabcentral/fileexchange/?term=login
From: Walter Roberson on
Shabnam Shaikh wrote:

> m making a project using gui as my front end of matlab...My project
> requires my first page as logn id and password....
> i m facing difficulty in setting passwords....I m very new to it...
> so plz tell me what property should i use to set password in it????

Use a KeyPressFcn callback in an edit box, and save the key presses
somewhere out of sight instead of in the String property of the edit
box; update the edit box to just indicate one '*' per character pressed,
or something like that. But it would be good manners to handle deletions.