>I have a form which has a number of controls where the control source is a
> DLookup statement, eg the value of txtSurname is a DLookup which compares
[quoted text clipped - 9 lines]
> Thanks
> Tony
What I would do is remove the DLookUp from the Control Source of the control
and put it in the Form_Current event instead:
Me.txtControl = Nz(DLookUp(...),"")
That way, the value is set whenever a record is displayed, but you can also
type in your own value.
Carl Rapson
Tony Williams - 23 May 2007 19:28 GMT
Thanks Carl
Tony
>>I have a form which has a number of controls where the control source is a
>> DLookup statement, eg the value of txtSurname is a DLookup which compares
[quoted text clipped - 20 lines]
>
> Carl Rapson