Hey all,
I have a textbox with the "RichText" property set. Within VBA, I assemble a string with html tags using queries and some if/else logic. When I set the value of my textbox to this string I get some extra things I wasn't expecting. I am assembling a tiered bulleted list. If I paste my html string into http://htmledit.squarefree.com/ it get exactly what I was hoping for. (This site just displays the html that you provide) But in Access, I get extra bullets at the end of each of my lists... It seems that my html correct, but I was wondering if Access has some special quirk to it that I haven't yet discovered.
The html String:
<b> <u> Vacation / Travel Time: </u> </b> <br/>
<ul>
<li> 6/5/2017 - 6/9/2017 </li>
</ul> <br/> <br/>
<b><u> Actuators Modeling and Simulation Group - General </u></b><br/>
<ul>
<li>test g3</li>
<li>test g2</li>
<li>test g1</li>
<li><b><u> test mission 1 </u></b>
<ul>
<li>teszt 1.1
<ul>
<li>test 1.1.1</li>
</ul>
</li>
</ul>
</li>
<ul>
<li><u>tes task 1</u>
<ul>
<li>1.1.2
<ul>
<li>1.1.2.1</li>
</ul>
</li>
<li>test 1.1.1
<ul>
<li>1.1.1.1</li>
<li>1.1.1.2</li>
<li>1.1.1.3</li>
</ul>
</li>
</ul>
</li>
</ul>
<li><b><u> test mission 2 </u></b>
<ul>
<li>1.2.1
<ul>
<li>1.2.1.1</li>
<li>1.2.1.2</li>
</ul>
</li>
</ul>
</li>
</ul>
What Access gives me:
What the above website gives me:
(Ignore the missing Vacation bit in the website picture)