Progress bar and memo field

M

MDW

Then what you would do is use an unbound textbox to
display the remaining characters. We'll assume that it is
called txtRemaining and your memo field is called memoBox.


Private Sub memoBox_Change()

With txtRemaining

.SetFocus
.Text = "Remaining characters: " & CStr(800 - Len
(Me.Text0.Text))

End With

End Sub
 

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