i have a form which consists of few text boxes + combo boxes.
form shows all the transactions that has been made.
(all fields are bound).
for ex. when user opens the form, they see 100 records they can scroll through. here's the tricky part. I only want to show records where cboOSID and cboAcct is null.
that is because at first, those two fields are blank(other fields are not blank). user selects from combobox and update query will run to update those two fields in to the table.
i would like to prevent from overwriting values so i was hoping to find a way to only show records where those two combo boxes are null.
i've tried creating a select query on form_load but it's not working..
any ideas?
ps. am i making sense? pretty much i would like the form to only populate where cboOSID and cboAcct is null
form shows all the transactions that has been made.
(all fields are bound).
for ex. when user opens the form, they see 100 records they can scroll through. here's the tricky part. I only want to show records where cboOSID and cboAcct is null.
that is because at first, those two fields are blank(other fields are not blank). user selects from combobox and update query will run to update those two fields in to the table.
i would like to prevent from overwriting values so i was hoping to find a way to only show records where those two combo boxes are null.
i've tried creating a select query on form_load but it's not working..
any ideas?
ps. am i making sense? pretty much i would like the form to only populate where cboOSID and cboAcct is null