Guest_imported
New member
- Jan 1, 1970
- 0
Hello. I have two DTC combo boxes. On the Afterupdate Event of one, I need the other combo box to show the new recordset. The code below works great when I am filtering from one DTC combo box to a DTC text box. I don't undertand why it doesn't work going from one combo to another?
Sub cboCombo_onchange()
If rsSelect.isOpen() then rsSelect.close
sql = "select * from rsSelectWhere NALC= '" & cboCombo.getValue() & "'"
rsSelect.setSQLText(sql)
rsSelect.open
Any help would really be appreciated.
Thanks,
Rene
Sub cboCombo_onchange()
If rsSelect.isOpen() then rsSelect.close
sql = "select * from rsSelectWhere NALC= '" & cboCombo.getValue() & "'"
rsSelect.setSQLText(sql)
rsSelect.open
Any help would really be appreciated.
Thanks,
Rene