C++ Builder
| Главная | Уроки | Статьи | FAQ | Форум | Downloads | Литература | Ссылки | RXLib | Диски |

 
Написание пароля
Sweta
  Отправлено: 12.04.2004, 09:43


Не зарегистрирован







Hello!Помогите написать программу для ввода пароля. Как сделать, чтобы при набирании цифр на экране отображались "*"?
olegenty
Отправлено: 12.04.2004, 10:01


Ветеран

Группа: Модератор
Сообщений: 2412



пользуешься TEdit?
установи св-во PasswordChar в "*", вот и всё smile.gif

вот тебе описание из справки C++ Builder:
QUOTE

Indicates the character, if any, to display in place of the actual characters typed in the control.

__property char PasswordChar = {read=FPasswordChar, write
=SetPasswordChar, default=0};

Description

Use the PasswordChar property to create an edit control that displays a special character in place of any entered text. If PasswordChar is set to the null character (ANSI character zero), the edit control displays its text normally. If PasswordChar is any other character, the edit control displays PasswordChar in place of each character typed. PasswordChar affects the appearance of the edit control only. The value of the Text property reflects the actual characters that are typed.
Aptem
Отправлено: 12.04.2004, 13:45


Мастер участка

Группа: Участник
Сообщений: 349



Также можешь использовать TMaskEdit.

Вернуться в Вопросы программирования в C++Builder