Java TextField Methods

This is second program on TextField, first being User Name Password Validation (applet version is also available). The methods like setColumns(), setText() and setFont(), getColumns() and getText() are used to set and get the properties. Example on using Java TextField Methods import java.awt.*; public class TextFieldProperties extends Frame { TextField tf1, tf2, tf3; public TextFieldProperties() …

Java TextField Methods Read More »