G
Guest
Hello,
I have an unbound cboRptLIN on frm_LINDialog, where the user chooses a system from the cbo, hits OK and a report is created with that system record. It works fine, but when I open the frm_LINDialog to preview a different system report, the cboRptLIN still has the previous system viewed in the cbo box. I would like it to be blank.
I tried a requery on the OnClose event of the frm_LINDialog, but it is not doing the trick:
Private Sub Form_Close()
Dim cboRptLIN As String
DoCmd.Requery "cboRptLIN"
End Sub
Does anyone have any suggestions on how I can get this to work? :0)
Thank you very much,
Mary
I have an unbound cboRptLIN on frm_LINDialog, where the user chooses a system from the cbo, hits OK and a report is created with that system record. It works fine, but when I open the frm_LINDialog to preview a different system report, the cboRptLIN still has the previous system viewed in the cbo box. I would like it to be blank.
I tried a requery on the OnClose event of the frm_LINDialog, but it is not doing the trick:
Private Sub Form_Close()
Dim cboRptLIN As String
DoCmd.Requery "cboRptLIN"
End Sub
Does anyone have any suggestions on how I can get this to work? :0)
Thank you very much,
Mary