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 classes of exceptions may be caught by a catch clause?
What is threadfactory?
Do I need to import javlang package any time? Why ?
Are enterprise beans allowed to use thread.sleep()?
What is a class loader? What are the different class loaders used by jvm?
Name three subclasses of the component class?
What is ioc concept?
Name the class that is used to bind the server object with RMI Registry?
Explain about thread synchronization inside a monitor?
What is abstract schema?
How are the elements of a cardlayout organized?
What are callback interfaces?
What are the different class loaders used by jvm?
Why do I get a duplicate name error when loading a jar file?
Why a client should be multithreading? Explain.