meta data for this page
ibec_PasswordQuery
The ibec_InputQuery function displays an input dialog that enables the user to enter a string.
Description
The ibec_PasswordQuery function is similar to ibec_InputQuery, the only difference is an asterisk ('*') in place of any input text.
Syntax
function ibec_PasswordQuery(const ACaption, APrompt: string; var Value: string): Boolean;
Example
execute ibeblock
as
begin
ibec_PasswordQuery('Login','Please enter your password',pwd);
ibec_ShowMessage('You entered:' || pwd);
end