HTML Tags in report

wsaccess

Registered User.
Local time
Today, 04:34
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
 
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: 140
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
 
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

Back
Top Bottom