G
Guest
I'm rather inexperienced with Access 2002, so bear with me because this is
probably a really easy-to-answer question! I am modifying a database that
someone else created some time ago for reporting issues they come up with
when testing software. The form has several comboboxes on it and most are
bound (the ones I added are unbound). When I click on "Save" to save a new
record, it will save the record and clear the bound comboboxes, however it
will keep the selected values in the unbound comboboxes. This is the code
that goes with the "Save" button:
Private Sub Button68_Click()
On Error GoTo Err_Button68_Click
DoCmd.GoToRecord , , acNewRec
DoCmd.GoToControl "ISSUENAME"
Exit_Button68_Click:
Exit Sub
Err_Button68_Click:
Resume Exit_Button68_Click
End Sub
Anyone have any quick/easy ideas on how I can get those unbound comboboxes
cleared when saving the record?
Thank you in advance!
probably a really easy-to-answer question! I am modifying a database that
someone else created some time ago for reporting issues they come up with
when testing software. The form has several comboboxes on it and most are
bound (the ones I added are unbound). When I click on "Save" to save a new
record, it will save the record and clear the bound comboboxes, however it
will keep the selected values in the unbound comboboxes. This is the code
that goes with the "Save" button:
Private Sub Button68_Click()
On Error GoTo Err_Button68_Click
DoCmd.GoToRecord , , acNewRec
DoCmd.GoToControl "ISSUENAME"
Exit_Button68_Click:
Exit Sub
Err_Button68_Click:
Resume Exit_Button68_Click
End Sub
Anyone have any quick/easy ideas on how I can get those unbound comboboxes
cleared when saving the record?
Thank you in advance!