LoginRequester()
Posted: Tue Mar 14, 2017 4:01 pm
For some programs or for network connection, we need to login with username and password.
There is no Requester in PB for those kind of action.
A new requester will be welcome, something like InputRequester, but with 2 fields
SyntaxFlags (optional)
#PB_InputRequester_Password: set the field type as 'password'. The displayed text will be hidden.
Functions for return values
(or use array(2) for function return values or string with a separation character)

There is no Requester in PB for those kind of action.

Syntax
Code: Select all
LoginRequester(Title$, TextLogin$, TextPassword$ [, DefaultLogin$ [, DefaultPassword$, [Flag]]])
#PB_InputRequester_Password: set the field type as 'password'. The displayed text will be hidden.

Code: Select all
LoginName$ = SelectedLogin()
PasswordName$ = SelectedPassword()

