One work-around I've found so far

R

Rene

Hello,

So far, I've worked around the problem by 'resetting' the contents of the
Textbox in the form's Current event.

The following is not elegant at all, but does the trick.
Essentially, it removes the controlsource, blanks out the control, then
assigns the controlsource back to its original value.

Dim MyControlSource As String
With Me!MyRichTextbox
MyControlSource = .ControlSource
.ControlSource = ""
.Text = ""
.ControlSource = MyControlSource
End With


Still looking for a better solution!

René
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top