Hello
I am getting a runtime error on the highlighted (bold) code. I have been looking at it too long..any idea of what I am doing wrong?
Thanks in advance for your help!
I am getting a runtime error on the highlighted (bold) code. I have been looking at it too long..any idea of what I am doing wrong?
Thanks in advance for your help!
Code:
Private Sub Colors_AfterUpdate()
If Me.Colors = "Yes" Then
Dim strOtherValue As String
strOtherValue = InputBox("Please specify COLORS for Mailer", "Specific colors for mailer")
Else
Exit Sub
End If
If strOtherValue = "" Then
Me.Colors = "No"
strColorDescription = ""
ColorDescription.Value = ""
Else
strColorDescription = strOtherValue
[b]ColorDescription.Value = strOtherValue[/b]
If IsNull(Me.Comments) Then
Me.Comments = Me.Comments & "Specific Colors for mailer: " & strOtherValue & vbCrLf
Else
Me.Comments = Me.Comments & vbNewLine & "Specific Colors for mailer: " & strOtherValue & vbCrLf
End If
End If
End Sub