FORM/SUB FORM SOLUTION

J

John

Thanks everyone for all your help. I came up with a different solution that I would like to share with everyone

Here is the syntex I used. Actually works beautifully and its extremely simples

Private Sub Form_AfterUpdate(
subfrm_ProspectInformation.Form!PrspInfoHSAttend = IsNotNul
subfrm_ProspectInformation.Form!PrspInfoHSAttend = 666666

End Sub
 
A

Albert D. Kallal

John said:
Thanks everyone for all your help. I came up with a different solution
that I would like to share with everyone.
Here is the syntex I used. Actually works beautifully and its extremely simples.

Private Sub Form_AfterUpdate()
subfrm_ProspectInformation.Form!PrspInfoHSAttend = IsNotNull
subfrm_ProspectInformation.Form!PrspInfoHSAttend = 6666666

End Sub

As noted, the first line of the code is incorrect....you only need
 
Top