Another methods in the after update is
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmComments"
stLinkCriteria = "[ClientID]=" & Me![ClientID]
DoCmd.Openform stDocName, , , stLinkCriteria
Set the record source of frmComments to the table that has the comments field.
Set...