Tabs in Memo Fields

R

Rick Brandt

Brian said:
Does anyone know how to insert tabs into a memo field?

You can't. At least not if you want to use a standard Access TextBox to view/edit
the field. You would need to use a RichText ActiveX control. I mean you could run
code like...

Me.MemoField = Me.MemoField & vbTab & "Some Other Text"

.... and the field would contain the ASCII code for a tab character, but it will
appear in a standard Access control as a pipe symbol or box.
 

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