• 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Linking and organizing combo boxes

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

JComboBox dayComboBox = new JComboBox();
dayComboBox.setModel(new DefaultComboBoxModel
(new String[] {"01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31\t"}));
dayComboBox.setBounds(460, 75, 46, 20);
frame.getContentPane().add(dayComboBox);


JComboBox monthComboBox = new JComboBox();
monthComboBox.setModel(new DefaultComboBoxModel
(new String[] {"01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"}));
monthComboBox.setBounds(516, 75, 46, 20);
frame.getContentPane().add(monthComboBox);

JComboBox yearComboBox = new JComboBox();
yearComboBox.setModel(new DefaultComboBoxModel
(new String[] {"2011", "2012", "2013", "2014"}));
yearComboBox.setBounds(572, 75, 56, 20);
frame.getContentPane().add(yearComboBox);


I have 3 combo boxes (above) for a user to select a date for the information they enter. How can I link them and temporarily store the data and then select the most recent date and the most recent 5 dates?
 
Bartender
Posts: 5167
11
Netbeans IDE Opera Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Riemke, and welcome to the Ranch!

So you've created the view (I do hope you created the view and didn't use some visual designer to autogenerate unreadable code).

I would think the next step would be to design and create the classes for modeling that data.
 
Darryl Burke
Bartender
Posts: 5167
11
Netbeans IDE Opera Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Riemke. please BeForthrightWhenCrossPostingToOtherSites
http://www.java-forums.org/new-java/59066-gui-fuel-calculator.html
 
Today you are you, that is turer than true. There is no one alive who is youer than you! - Seuss. Tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic