B4J Question Password Field

Fabrice La

Active Member
Licensed User
Longtime User
It says somewhere that to use password you have to use passwordfield like TextField but if you generate members, passwordfield is declare as node. No possibility to get text ?
 

alienhunter

Active Member
Licensed User
Longtime User
thanks works
AH
 

Attachments

  • passw.jpg
    passw.jpg
    6.3 KB · Views: 279
Upvote 0

stevel05

Expert
Licensed User
Longtime User
After you've generated the member for the PasswordField, you will get something like:

B4X:
Private PasswordField As Node

in Process_Globals (depending on what you've set the CSS id to in the Designer). Just change the word Node, to TextField.

B4X:
Private PasswordField As TextField
 
Upvote 0

Gary Miyakawa

Active Member
Licensed User
Longtime User
After you've generated the member for the PasswordField, you will get something like:

B4X:
Private PasswordField As Node

in Process_Globals (depending on what you've set the CSS id to in the Designer). Just change the word Node, to TextField.

B4X:
Private PasswordField As TextField


Got it! Thanks Steve !
 
Upvote 0

ivanomonti

Expert
Licensed User
Longtime User
I did not understand how it is possible to change from TextField to PaswordField node, can be an example
 
Upvote 0
Top