how do I get variating fonts and type on a single access memo.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am unable to bold or change the font of different words or sentences within
an access memo. Is there any way that I can change individual characters or
words to a different font without changing the whole memo.
 
If you use Rich Text Box control, you will be able to change characters'
font. You need write code the allow user to select characters in the
Richtextbox control and select font/size/bold.... and if you want to persist
this changes, you need to save/bind the memo field to RichTextBox controls'
TextRTF, instead of Text, property. But the real data in the memo field will
be buried in RTF code and you can only get them back by loading them through
RichTextBox control or other word processing program.
 

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

Back
Top