ku rasa sih bisa menggunakan fungsi if saja
misal
Private sub combo1_click()
if combo1.text = "Bandung" then
combo2.additem "bla2"
else
if combo1.text = "Banjarmasin" then
combo2.additem "Bla2"
end if
end sub
kecuali source combo nya dari access
ada cara yang lebih mudah
dengan coding
Private sub combo1_click()
dowhile adodc1.recordset.eof = false
if combo1 = adodc1.recordset![bandung] then
combo2.additem adodc1.recordset![bandungsub]
end if
adodc1.recordset.movenext
loop
end sub
____________________________________________________________________________________
Looking for last minute shopping deals?
Find them fast with Yahoo! Search.
http://tools.search.yahoo.com/newsearch/category.php?category=shopping
[Non-text portions of this message have been removed]