Prev: How to connect 2 forms with each other in gui????
Next: ??? Out of memory. Type HELP MEMORY for your options.
From: Shabnam Shaikh on 11 Apr 2010 12:35 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 11 Apr 2010 12:43 http://www.mathworks.com/matlabcentral/fileexchange/?term=login
From: Walter Roberson on 11 Apr 2010 12:44
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. |