> My brain froze up on me...
>
[quoted text clipped - 4 lines]
> pass-through). But I blanking on how to capture the output value and use that
> in the form.
Hey thanks, Sparker.
What is wrong with this syntax:
rst is properly declared and the query has a record. It just doesn't like
the second line.
Set rst = CurrentDb.OpenRecordset("rqTumStg")
Me.omg_ClinStage = rst.TumorStage
TIA,
Sam
> declare a variable
> assign the variable your aquired value from your query
[quoted text clipped - 14 lines]
> > pass-through). But I blanking on how to capture the output value and use that
> > in the form.
Steve Schapel - 05 Mar 2005 03:26 GMT
Sam
Try with a ! instead of a . as in...
Me.omg_ClinStage = rst!TumorStage

Signature
Steve Schapel, Microsoft Access MVP
> Hey thanks, Sparker.
> What is wrong with this syntax:
[quoted text clipped - 7 lines]
> TIA,
> Sam