********
Francisco Javier
.
.
.
.
> Hola!
> Me gustaria saber como hacer que un textfield muestre asteriscos en
> lugar de letras. O sea que quiero hacer un campo de tipo clave.
Para eso debes tilizar el método setEchoChar de TextField, te pongo lo
que viene en el API:
-----------------------------------------------------------
public void setEchoChar(char c)
Sets the echo character for this text field.
An echo character is useful for text fields where user input should
not be echoed to the screen, as in the case of a text field for entering
a password. Setting echoChar = 0 allows user input to be echoed to the
screen again.
Parameters:
c - the echo character for this text field.
Since:
JDK1.1
See Also:
echoCharIsSet(), getEchoChar()
------------------------------------------------------------
Saludos