![]() |
|
password - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: password (/thread-3560.html) |
password - tobenschain - 10-10-2023 I have an edit control set up as a password. Is there a way to stop it from remembering the last entry? RE: password - RenSword - 10-11-2023 (10-10-2023, 06:40 PM)tobenschain Wrote: I have an edit control set up as a password. Is there a way to stop it from remembering the last entry? if u use the property TIWEdit.DataType = stPassword, will it still remember last entry? RE: password - tobenschain - 10-11-2023 (10-11-2023, 02:31 AM)RenSword Wrote:(10-10-2023, 06:40 PM)tobenschain Wrote: I have an edit control set up as a password. Is there a way to stop it from remembering the last entry? yes RE: password - Alexandre Machado - 10-16-2023 Password fields are not "remembered" by the browser, but possibly the password manager of your browser saved the username/password combination for that specific URL? properties that may affect password fields and you may need to check: - DataType = stPassword - PasswordPrompt = True - Attributes: iaAutocomplete should be False |