ibec_PasswordQuery

The ibec_InputQuery function displays an input dialog that enables the user to enter a string.

Syntax

 function ibec_PasswordQuery(const ACaption, APrompt: string; var Value: string): Boolean;

Description

The ibec_PasswordQuery function is similar to ibec_InputQuery, the only difference is an asterisk ('*') in place of any input text.

Example

  execute ibeblock
  as
  begin
    ibec_PasswordQuery('Login','Please enter your password',pwd);
    ibec_ShowMessage('You entered:' || pwd);
  end

back to top of page
<< ibec_InputQuery | IBEBlock | ibec_Explode >>