Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.gui > #2219 > unrolled thread

please help me in creatin

Started by"boris" <boris@THRWHITE.remove-dii-this>
First post2011-04-27 15:37 +0000
Last post2011-04-27 15:37 +0000
Articles 3 — 2 participants

Back to article view | Back to comp.lang.java.gui


Contents

  please help me in creatin "boris" <boris@THRWHITE.remove-dii-this> - 2011-04-27 15:37 +0000
    Re: please help me in cre "Andrew Thompson" <andrew.thompson@THRWHITE.remove-dii-this> - 2011-04-27 15:37 +0000
      Re: please help me in cre "boris" <boris@THRWHITE.remove-dii-this> - 2011-04-27 15:37 +0000

#2219 — please help me in creatin

From"boris" <boris@THRWHITE.remove-dii-this>
Date2011-04-27 15:37 +0000
Subjectplease help me in creatin
Message-ID<1186813204.838620.198460@e9g2000prf.googlegroups.com>
  To: comp.lang.java.gui
I am creating a form using swing through coding (not using netbeans).
Now in the form I have one JComboBox
of Country and other of State.  Now I want it in such a way that when
I
select a country from the Country JComboBox ,the corresponding states
automatically appears in the State JComboBox.  Please help.
I hope I've put up my query clearly.
Still learning java!!:)

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

[toc] | [next] | [standalone]


#2221 — Re: please help me in cre

From"Andrew Thompson" <andrew.thompson@THRWHITE.remove-dii-this>
Date2011-04-27 15:37 +0000
SubjectRe: please help me in cre
Message-ID<7685d9a7412e9@uwe>
In reply to#2219
  To: comp.lang.java.gui
boris wrote:
>I am creating a form using swing ..

Umm.. OK.  You seem to have picked up some of the tips
I was trying to convey on comp.lang.java.programmer, but
missed others.

How did you go with the JavaDcos for those methods 
I pointed you to?

Can you post the code you have so far?
For usenet newsgroups, often a specific form of code
is best.  That form is an SSCCE.
<http://www.physci.org/codes/sscce.html>

-- 
Andrew Thompson
http://www.athompson.info/andrew/

Message posted via JavaKB.com
http://www.javakb.com/Uwe/Forums.aspx/java-gui/200708/1

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

[toc] | [prev] | [next] | [standalone]


#2223 — Re: please help me in cre

From"boris" <boris@THRWHITE.remove-dii-this>
Date2011-04-27 15:37 +0000
SubjectRe: please help me in cre
Message-ID<1186818491.212159.116300@q3g2000prf.googlegroups.com>
In reply to#2221
  To: comp.lang.java.gui
sir
I am posting here a part of my coding releted to my problem.
===============================================
import javax.swing.*;
import java.awt.*;
class Design extends JFrame
{
 public Design()
 {
  super("Tenant Form");
  setLayout(new FlowLayout());


  GridBagConstraints gbc=new GridBagConstraints();
  gbc.insets=new Insets(2,2,2,2);
  gbc.anchor=GridBagConstraints.WEST;

  JPanel jp21=new JPanel();
  jp21.setBorder(new TitledBorder("Address Of Landlord Property"));
  jp21.setLayout(new GridBagLayout());

  JLabel l11=new JLabel("Property/House/Building Address");
  gbc.gridx=0;
  gbc.gridy=0;
  jp21.add(l11,gbc);

  JTextArea ta11=new JTextArea(3,15);
  ta11.setLineWrap(true);
  int v=ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
  int h=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
  JScrollPane scroll11=new JScrollPane(ta11,v,h);
  gbc.gridx=1;
  jp21.add(scroll11);
  jp21.add(ta11,gbc);

  JLabel l21=new JLabel("Land Mark");
  gbc.gridx=0;
  gbc.gridy=1;
  gbc.ipady=0;
  gbc.gridheight=1;
  jp21.add(l21,gbc);

  JTextField tf21=new JTextField(15);
  gbc.gridx=1;
  gbc.gridy=1;
  jp21.add(tf21,gbc);

  JLabel l31=new JLabel("Country");
  gbc.gridx=0;
  gbc.gridy=2;
  jp21.add(l31,gbc);

  JComboBox c11=new JComboBox();
  c11.addItem("India");
  c11.addItem("US");
  c11.addItem("Australia");
  gbc.gridx=1;
  gbc.gridy=2;
  jp21.add(c11,gbc);

  JLabel l41=new JLabel("State");
  gbc.gridx=0;
  gbc.gridy=3;
  jp21.add(l41,gbc);

  JComboBox c21=new JComboBox();
  c21.addItem("Rajasthan");
  c21.addItem("Delhi");
  c21.addItem("Maharastra");
  gbc.gridx=1;
  gbc.gridy=3;
  jp21.add(c21,gbc);

  JLabel l51=new JLabel("District");
  gbc.gridx=0;
  gbc.gridy=4;
  jp21.add(l51,gbc);

  JComboBox c31=new JComboBox();
  c31.addItem("jaipur");
  c31.addItem("ajmer");
  c31.addItem("alwar");
  gbc.gridx=1;
  gbc.gridy=4;
  jp21.add(c31,gbc);

  JLabel l61=new JLabel("City/Town");
  gbc.gridx=0;
  gbc.gridy=5;
  jp21.add(l61,gbc);

  JTextField tf31=new JTextField(15);
  gbc.gridx=1;
  gbc.gridy=5;
  jp21.add(tf31,gbc);

  JLabel l71=new JLabel("Police District");
  gbc.gridx=0;
  gbc.gridy=6;
  jp21.add(l71,gbc);

  JComboBox c41=new JComboBox();
  c41.addItem("Jaipur");
  c41.addItem("Alwar");
  c41.addItem("Ajmer");
  gbc.gridx=1;
  gbc.gridy=6;
  jp21.add(c41,gbc);

  JLabel l81=new JLabel("Police Circle");
  gbc.gridx=0;
  gbc.gridy=7;
  jp21.add(l81,gbc);

  JComboBox c51=new JComboBox();
  c51.addItem("India");
  c51.addItem("US");
  c51.addItem("Australia");
  gbc.gridx=1;
  gbc.gridy=7;
  jp21.add(c51,gbc);

  JLabel l91=new JLabel("Police station");
  gbc.gridx=0;
  gbc.gridy=8;
  jp21.add(l91,gbc);

  JComboBox c61=new JComboBox();
  c61.addItem("Bani Park");
  c61.addItem("Raja Park");
  c61.addItem("Malviya Nagar");
  gbc.gridx=1;
  gbc.gridy=8;
  jp21.add(c61,gbc);

  JLabel l101=new JLabel("Pin No.");
  gbc.gridx=0;
  gbc.gridy=9;
  jp21.add(l101,gbc);

  JTextField tf41=new JTextField(15);
  gbc.gridx=1;
  gbc.gridy=9;
  jp21.add(tf41,gbc);

  JLabel l111=new JLabel("Phone No.(R)");
  gbc.gridx=0;
  gbc.gridy=10;
  jp21.add(l111,gbc);

  JTextField tf51=new JTextField(15);
  gbc.gridx=1;
  gbc.gridy=10;
  jp21.add(tf51,gbc);
  add(jp21);
  }
}
public class Project
{
 public static void main(String args[])               //main method
for the program
 {
  Design tabbedwin= new Design();
  tabbedwin.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  tabbedwin.setSize(900,700);
  tabbedwin.setVisible(true);
 }
}

================================================
The actual coding consist of 6 tabs each with same type of several
panels.  Here I need to connect country , state and district
respectively.

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.java.gui


csiph-web