Cool, I will try it...by the way - I found a workaround for the bug that
discards the first character entered in the control.
I put this code in the On Enter event handler for the control at the form
level:
Private Sub RTF2Ctrl_Enter() ' or whatever the control is named on the
form....
If Len(RTF2Ctrl.Value) = 0 Then ' we don't want to wipe existing data, do
we?
RTF2Ctrl.Value = " " ' sets the value of the control to a space ( This
bit might be overkill)
RTF2Ctrl.Value = "" ' erases the contents.
End If
End Sub
Only more testing will determine if it is consistent as it looks.
Thank you again for putting this out - well within my budget!
Cheers!
Mike