
Signature
Kind Regards
Damiaan
info @t dampee d0t be
Yes. At the bottom of entry form is a list box that lists cases allocated to
the customer concerned. The On Current event as well as the OnClick event
uses the following VBA code (except the OnClick has the extra
docmd.runcommand acCmdSaveRecord)
Dim intCustomerID As Integer
DoCmd.RunCommand acCmdSaveRecord
intCustomerID = Me.txtCustomerID
Me.lstCaseList.RowSource = "SELECT Reference,Type,[Start
Date],Owner,Status,[Closure Date] FROM Vi_CaseList WHERE CustomerID = " &
intCustomerID
Me.lstCaseList.Requery
If this is the cause, why has it only just started to show itself? The
database has been running fine since November 2004 !!
Regards
Dazza
> Did you added somewhere a requery of this form?
>
[quoted text clipped - 20 lines]
> > Regards
> > Dazza
Darren - 23 Mar 2005 16:13 GMT
I should add that I have just rem'd out all code for the requery statement
"Me.lstCaseList.Requery" and this made no difference.
Regards
Dazza
> Yes. At the bottom of entry form is a list box that lists cases allocated to
> the customer concerned. The On Current event as well as the OnClick event
[quoted text clipped - 40 lines]
> > > Regards
> > > Dazza