I'm currently writing an app that has a lot of text based information,
but I'm having trouble figuring out how to display and format this text.
The text is supposed to be stored in a database and my app will read the
text from that database and then format it appropriately within the PDA.
This is the part I'm having trouble with - the fact that the text is
dynamic and my WindowsForm has to adapt to it. Say I have the following
(using HTML):
<h2>Some Title</h2>
<br>
<b>Sub title: </b>
<li>List item one</li>
<li>List item two</li>
<li>Sub list item two</li>
<li>List item three</li>
How can I format all of this information using standard WindowsForms
controls? Do I just build a bunch of Windows.Forms.Labels and drop the
text in? Would I be better off using real HTML (hosted on the PDA, not
web) and loading it into the WebBrowser control?
Thanks for any advice.