S
SF
Hi,
I have a form contain a memo field in RTF. I want to find the "~" and
replace the character with the enter key. The code below work for current
record, how do I move from first to the record end to replace the "~"
Private Sub cmdReplaceEvidence_Click()
Me.Evidence = Replace(Me.Evidence, "~", "</div><div>")
End Sub
SF
I have a form contain a memo field in RTF. I want to find the "~" and
replace the character with the enter key. The code below work for current
record, how do I move from first to the record end to replace the "~"
Private Sub cmdReplaceEvidence_Click()
Me.Evidence = Replace(Me.Evidence, "~", "</div><div>")
End Sub
SF