Trying to write the code for this:
This a punchlist form(fills data in tblpunchlist)
I have a feild that you manually enter the craft. After updating the craft (this is based tblcraft) I want a feild to autofill the responsible superintendant.
Private Sub ComboRespCraft_AfterUpdate()
Me.CboRespSuper = [tblCraft].[ResponsibleSuper]
End Sub
This is what I tried, but i dont think I'm coming at it write.
This a punchlist form(fills data in tblpunchlist)
I have a feild that you manually enter the craft. After updating the craft (this is based tblcraft) I want a feild to autofill the responsible superintendant.
Private Sub ComboRespCraft_AfterUpdate()
Me.CboRespSuper = [tblCraft].[ResponsibleSuper]
End Sub
This is what I tried, but i dont think I'm coming at it write.