Link to home
Start Free TrialLog in
Avatar of komlaaa
komlaaa

asked on

JTextField upper left corner

Hi Experts!!
How can i start writing into a JTextField from the uper left Corner, and keep APPENDING?

Thanks.
Avatar of DrWarezz
DrWarezz

What do you mean? Sorry.
Could you elaborate a bit more? :)

[r.D]
The simplest way remains:
void append(String text)
{
     textfield.setText(textfield.getText() + text);
}

You might design a strategy to add newlines as <BR>  (HTML code).
;JOOP!
ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
8-)