• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

GUI

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am new to Java still trying to figure it out and I am lost on this one. I have an assignment for school and I think I did it right but I know I didn't. I can not get the output to output? It should (in a perfect world) output the variable b from calculate() to JTextField paymentField. Any suggestions?



[ June 30, 2005: Message edited by: Rich Wilson ]
 
Ranch Hand
Posts: 262
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It looks like you didn't add action listeners to your buttons.

Try replacing:



with:

 
Rich Wilson
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dave,

I tried it and am now getting an error message that I was getting before when I used (this) is there anything else I need to add back into it?

Thank you for the help

C:\Documents and Settings\Darrin\Desktop\POS 407\WK-2\mortgageweek2.java:33: <identifier> expected
close.addActionListener(this);
^
C:\Documents and Settings\Darrin\Desktop\POS 407\WK-2\mortgageweek2.java:35: <identifier> expected
start.addActionListener(this);
^
C:\Documents and Settings\Darrin\Desktop\POS 407\WK-2\mortgageweek2.java:37: <identifier> expected
clear.addActionListener(this);
 
Dave Wingate
Ranch Hand
Posts: 262
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yeah, I didn't read your code very carefully; sorry. The calls to addActionListener need to happen inside your constructor. Something like this:

 
Rich Wilson
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you I was hoping it was something stupid and it was. I guess it is just something that only time and experience will fix.
 
Uh oh, we're definitely being carded. Here, show him this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic