|
|
|
รบกวนช่วยแก้ปัญหาเกี่ยวกับ JComboBox เลือกจังหวัด, อำเภอ, ตำบล ให้หน่อยครับ |
|
|
|
|
|
|
|
ลองดูนะครับ
Code (Java)
private void cbb_provinceItemStateChanged(java.awt.event.ItemEvent evt) {
.......
PreparedStatement ps = connect.prepareStatement("Select * From District where Province_id = " + Id_province);
ResultSet rs = ps.executeQuery();
cbb_district.removeAllItems();//เพิ่มตรงนี้ คือจำทำการลบค่าออกให้หมดก่อน เพื่อจะรับเข้ามาใหม่
while (rs.next()){
//ดึงค่าที่ได้จ่าก RS
//add data to commbo box
int District_id = Integer.parseInt(rs.getString("District_id"));
String District_name = rs.getString("District_name");
cbb_district.addItem(District_name);
cbb_district.setSelectedItem(District_name);
}
|
|
|
|
|
Date :
2015-12-30 11:28:43 |
By :
บัญดิษฐ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|