i have a jtextfield called dollarOutput and what i am trying to do is when a given button is clicked, append a number to the end of the textfield. this is what i have:
dollarOutput.append(button.getText());
but it throws an error saying:
Error: H:\Fall 07\CIS 235\Homeworks\HW6\DollarConverter.java:154: cannot find symbol
symbol : method append(java.lang.String)
location: class javax.swing.JTextField
am i using this method correctly? i couldnt find it in the API and every example i see using it is in this form. any help would be greatly appreciated