MajP
You've got your good things, and you've got mine.
- Local time
- Today, 17:05
- Joined
- May 21, 2018
- Messages
- 9,243
So if I bind the Authorization Edit form to
Patient joined to authorizations to doctors I have all the info to populate all controls. Then simply move to that auth ID.
And you can simply get rid of this
Can gurantee you now display all the correct info for the authorization. You edit the authorization gets edited.
That is the standard way to do it in Access.
Unless I am missing something, I think you are just overthinking based on the change from unbound to bound and leaving it "semi bound".
Patient joined to authorizations to doctors I have all the info to populate all controls. Then simply move to that auth ID.
Code:
DoCmd.OpenForm "AuthorizationsEditF", , , "[AuthorizationID] =" & Me![AuthorizationID], OpenArgs:=2
Code:
With Forms("AuthorizationsEditF")
.PatID = PatientID
.FN = PFirstName
.LN = PLastName
.PatDOB = PDOB
.PatPhone = PPhone
.DoctorName = DocName
.IPaNam = IpaName
.HealthPlanName = HealthPlan
.SpecialtyName = Specialty
.SpecialistName = DrName
End With
That is the standard way to do it in Access.
Unless I am missing something, I think you are just overthinking based on the change from unbound to bound and leaving it "semi bound".