ユーザーがコンボ ボックスにパスワードを入力しているので、ユーザーが入力したものの代わりに表示したいと考えて*
います。今のところ問題ありません。以下に示すルーチンは完全に機能します。ただし、ユーザーにパスワードを表示する選択肢も与えたいと思います。以下のルーチンを SetPasswordChar=false で呼び出すと、パラメータ 0 で EM_SETTPASSWORDCHAR が送信されます。コンボ ボックスには、ユーザーが入力したテキストが表示されると思います。しかし、それはまだ示しています*
。私が見逃しているものはありますか?
//==============================================================================
// SetComboBoxPasswordChar
//------------------------------------------------------------------------------
// Set the Password Char for a tComboBox.
//
// This is done using by sending an EM_SETPASSWORDCHAR message to the edit box
// sub-control of the combo box.
//
//http://msdn.microsoft.com/en-us/library/windows/desktop/bb761653(v=vs.85).aspx
//
// wParam - The character to be displayed in place of the characters typed by
// the user. If this parameter is zero, the control removes the current password
// character and displays the characters typed by the user.
//==============================================================================
procedure SetComboBoxPasswordChar
( const nComboBox : tComboBox;
const nSetPasswordChar : boolean );
var
C : integer;
H : tHandle;
begin
// Get handle of the combo box
H := nComboBox . Handle;
// Get handle of the edit-box portion of the combo box
H := GetWindow ( H, GW_CHILD );
// If nSetPasswordChar is true,
// set password char to asterisk
// Otherwise, clear the password char
if nSetPasswordChar then
C := ord('*')
else
C := 0;
SendMessage ( H, EM_SETPASSWORDCHAR, C, 0 );
end;