View Single Post
  #29 (permalink)  
Old 05-09-2008, 04:12 AM
Bascotie Bascotie is offline
Member
 
Join Date: Apr 2008
Posts: 77
Bascotie is on a distinguished road
One Problem my friend,

I modified the controller class to say use JOptionPane instead of System.out.println like so:

Code:
{ public static void main(String[] args) { ProjectTwoDefinition test = new ProjectTwoDefinition(); JOptionPane.showMessageDialog(null, test); } }
And everything works as normal but it causes an extra joptionpane window to show up with what ive input all in one line, is there a way to move the summary window that shows everything i input in that long box to the controller?
Reply With Quote