|
Posted by Roy Harvey on 01/31/07 18:12
On 31 Jan 2007 10:00:39 -0800, "SJ" <sjourdan@gmail.com> wrote:
>Thank you so much, This is perfect. However, when I do dbUID =
>result.Fields.Item("uid") always get a null
>If I do for each over the result set, it comes back fine. Any ideas
>on that? should it be someting like dbUID =
>result.Fields.Item("a.uid")?
>
>Thanks again.
Try removing the quotes. Use result.Fields.Item(uid) rather than
result.Fields.Item("uid"), result.Fields.Item(a.uid) rather than
result.Fields.Item("a.uid").
Roy Harvey
Beacon Falls, CT
[Back to original message]
|