OK...so I'm a lame duck....
I have frmComments which has mmoComments. In the AfterUpdate event I have:
DoCmd.OpenForm "frmComType", acNormal, "", "", , acNormal
Then..................
the user makes a selection from cboComType which is in frmComType.
Then in the AfterUpdate event...................
Private Sub cboComType_AfterUpdate()
Forms!frmsComments!CommentType = Me.cboComType.Column(1)
DoCmd.Close
If IsLoaded("frmsComments") Then Forms!frmsComments.Visible = True
End Sub
But .....
table "tblComType" which is the recordsource for cboComType is updated and CommentType IS NOT.....
what on earth am I doing wrong? I set frmComType to POP UP.
Thanks in advance for any suggestions.
I have frmComments which has mmoComments. In the AfterUpdate event I have:
DoCmd.OpenForm "frmComType", acNormal, "", "", , acNormal
Then..................
the user makes a selection from cboComType which is in frmComType.
Then in the AfterUpdate event...................
Private Sub cboComType_AfterUpdate()
Forms!frmsComments!CommentType = Me.cboComType.Column(1)
DoCmd.Close
If IsLoaded("frmsComments") Then Forms!frmsComments.Visible = True
End Sub
But .....
table "tblComType" which is the recordsource for cboComType is updated and CommentType IS NOT.....
what on earth am I doing wrong? I set frmComType to POP UP.
Thanks in advance for any suggestions.