Show a pop up

Vinians2006

Active Member
Licensed User
Longtime User
Hi !
I need to ask the user to type a password. There are any way to show a pop up to get the passord or I need to create a Activity for it ?
 

walterf25

Expert
Licensed User
Longtime User
custom dialogs

Hi there, yes you need to download the dialogs library and you can do it with this code.

B4X:
            Dim inputText As InputDialog
inputText.PasswordMode=True
inputText.Show("Enter password please","Log on","OK","","Exit",Null)

hope this helps,
cheers
 
Upvote 0
Top