On Thu, 23 Oct 2003 22:40:09 -0700, "Gary Miller"
<(E-Mail Removed)> wrote:
>Darryn,
>
>I would suggest moving your code as-is to the OnCurrent
>Event of the Form. This will get triggered every time you
>move from record to record and should do what you are
>looking for.
Sorry to to sound thick but which bit of code?
I have already tried
Private Sub Form_Current()
Me.IsUnique.Requery
Me.RequiresMaintenance.Requery
End sub
But this did nothing
I also just tried to C/P
>> If Me.IsUnique = True Then
>> Me.Quantity.Enabled = False
>> Me.SerialNumber.Enabled = True
>> Else
>> Me.Quantity.Enabled = True
>> Me.SerialNumber.Enabled = False
from the IsUnique afer update event but this did nothing either
Darryn
|