HTML Tags in report (1 Viewer)

wsaccess

Registered User.
Local time
Today, 01:20
Joined
Dec 23, 2015
Messages
38
Hi,

I am trying to use HTML tags in an Unbound Text box for Bullets (with specific type) and Indentation. I used the following:
="<ul style='list-style-type:square'>
<li>UL List1</li>
<li>UL List2</li>
<ol type = 'A'>
<li>OL List1></li>
<li>OL List2></li>
</ul>"

I am getting the default lists, but not the "Square" and "A" types.

Also, how do I get the indendation in HTML?

Doesn't all the HTML tags work in Access?

Thanks

Sindhu
 

sxschech

Registered User.
Local time
Yesterday, 17:20
Joined
Mar 2, 2010
Messages
793
I've done some limited html in reports changing color and bolding. Are your text boxes set as rich text?
 

Attachments

  • RichText.PNG
    RichText.PNG
    4.4 KB · Views: 102

mcescher

Busy as usual
Local time
Yesterday, 19:20
Joined
Mar 19, 2018
Messages
28
Here is a list of supported HTML tags:

<div>,<font>,<strong>,<em>,<u>,<ol>,<ul>,<li>,<blockquote>
And, styles/attributes per tag:

<font>: face, size, color, style(with BACKGROUND-COLOR only)
<div>: align, dir
 

wsaccess

Registered User.
Local time
Today, 01:20
Joined
Dec 23, 2015
Messages
38
Here is a list of supported HTML tags:

<div>,<font>,<strong>,<em>,<u>,<ol>,<ul>,<li>,<blockquote>
And, styles/attributes per tag:

<font>: face, size, color, style(with BACKGROUND-COLOR only)
<div>: align, dir

Ok, then I suppose the style with "type" is not supported in Access.

Thanks for the reply. I will try to find an alternative.
 

Users who are viewing this thread

Top Bottom