Maddy Sharma wrote: > Dear friends , > > i m student of computer Engg. i can made a > project on c++ and i can not have deep knowledge in c++ but i still try my > best , friends i can phase a problem in my login screen that i can not > able to hide my password at the time of login ie. when user can > login in project then password can seen as such , > > please any one give me idea that how i can hide the password or > change in '*' form . > > > can we change it by use of ASCII codes... > > please give me u r views on this problem..
Most password integration solutions that hide the password either use specialized controls (GUI) or capture keyboard input directly (OS-specific, ncurses). There is no way to do that with ANSI C/C++, which means we will need to know type of application, target OS, and compiler. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
