karatelung
Registered User.
- Local time
- Yesterday, 21:39
- Joined
- Apr 5, 2001
- Messages
- 84
i have a main table: tblFoster
and a linked table: tblIndFoster
they are linked as such (one to many): tblFoster.Identification ---> tblIndFoster .FosterID
there's a yes/no field called "Active" on tblFoster where if it is changed to "Inactive" or 0, i want the field "Active" on tblIndFoster for related records (where tblFoster.Identification = tblIndFoster.FosterID) to be changed to 0, as well.
i'm not exactly sure how to accomplish this. so far i have:
Private Sub Active_AfterUpdate()
If Me.Active = 0 Then
that's it. any help is greatly appreciated.
thanks,
richard
and a linked table: tblIndFoster
they are linked as such (one to many): tblFoster.Identification ---> tblIndFoster .FosterID
there's a yes/no field called "Active" on tblFoster where if it is changed to "Inactive" or 0, i want the field "Active" on tblIndFoster for related records (where tblFoster.Identification = tblIndFoster.FosterID) to be changed to 0, as well.
i'm not exactly sure how to accomplish this. so far i have:
Private Sub Active_AfterUpdate()
If Me.Active = 0 Then
that's it. any help is greatly appreciated.
thanks,
richard