Hi all
I am production a form with Information only text boxes, i want to have bullet points for certain key words, is there anyway of doing this ?
Maintt![]()
Hi all
I am production a form with Information only text boxes, i want to have bullet points for certain key words, is there anyway of doing this ?
Maintt![]()
chr(149) is a bullet character
chr(149) = •
For a text string, you can use the VBA Replace function to insert a bullet such as:
Replace("test important and here is some more text", "important", chr(149) & "important") = test •important and here is some more text
Does require some VBA/DAO programming experience
Here's some neat form examples you can also try.