• 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
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Calculations Based on Selected Radio Button

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All,

I am working on an assignment which calculates different pay rates based on the selection of a radio button. I'm okay with the default one (FIRST), but am unsure of how to base a different calculation on the other two radio buttons (SECOND and THIRD). I'll include what I have below...if anyone could point me in the right direction I would appreciate it.


 
Sheriff
Posts: 22853
132
Eclipse IDE Spring Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please Use Code Tags. I've added them for you this time.
 
Melinda Deering
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I apologize!

-Melinda
 
Ranch Hand
Posts: 4632
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
click the various radioButtons to see the textfiled background change color



if you want to set it up for the radioButtons to determine the pay rate, do it similar to what I've done for colors
double[] payRates = {15.1,25.2,35.3};etc
double payRate = payRates[0];//to match 'FIRST' being selected at startup

then in actionPerformed
payRate = payRates[index];
 
Melinda Deering
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Wow! You made me think of that in a completely different way. Thanks very much!

Melinda
 
reply
    Bookmark Topic Watch Topic
  • New Topic