Wednesday, February 11, 2009

thurs feb 12, part four: actually transferring data

right below this line of code in your actionPerformed:

else if (e.getSource() == passItOn)
{




add this code block:

wide= Integer.parseInt(across.getText()); //get the text convert it to an int
tall= Integer.parseInt(up.getText()); //get the text convert it to an int
one.setSize(wide,tall);

No comments:

Post a Comment