Suppose there are 3 combo box.
SELECT COUNTRY
SELECT STATE
SELECT CITY
if i select any country from country conutrylistbox
values in the state will get automatically inserted with
database values>>
THEN on selection of state city will be inserted in city
combo box
If you can help then please Help me...
Answer Posted / atul shende
make a database having fields country,state,city
store the information in that i.e list of
country,state,city.
write code on country combobox change index event.
select state from [table] where country='selected country'
store result in dataset or datatable and bind it with state
combo.
same for state combo for seelecting cities of that state.
| Is This Answer Correct ? | 12 Yes | 9 No |
Post New Answer View All Answers
What is the difference between session and entity beans?
Why doesn’t the focus feature on the tag work in every circumstance?
what is a non-repeatable read?
What is a modular application? What does module-relative mean?
Explain about thread synchronization inside a monitor?
How are commas used in the intialization and iteration parts of a for statement?
Name the eight primitive java types.
Which textcomponent method is used to set a textcomponent to the read-only state?
Explain the steps in details to load the server object dynamically?
Can I have an action without a form?
What is the immediate superclass of the applet class?
what is Activation Instantinator?
Define aop(assepct oriented programing)?
What are the different class loaders used by jvm?
How would you detect a keypress in a jcombobox?