I am creating a form in C# and need to display text on the form. I need some of the text to show up in a bulleted, unordered list. Is it possible to do this while using a label?
You could use a WebBrowser control. I.E.:
WebBrowser webBrowser1 = new WebBrowser(); webBrowser1.DocumentText 1 = "Click ButtonA ...Click ButtonB ..."