I am using the EControl as an html Editor, but not for actual web pages, but a Lyrics/Chord viewer using the WebBrowser control.
I am formatting the lyrics/chords using regular html tags (h1, p, br etc etc)
I don't care for the output of the "SaveAsHtml" directly from the Econtrol because it isn't web standard.
So, I want to be able to re-write the Editor1.Text string and apply my own html/css in code.
OR if I can figure out how to save the line-breaks when saving the output
But as I am doing it (most works), I am needing to know where the <br> (blank lines) code needs to go.
However, in the editor1.text string there are no indications of where the text string is.
It looks like this... (after saved) - no editing yet
Kingdom ComeColin EdgeKey: [F]This is the lyrics
When it should look like this (as it appears in the editor at runtime)...
Kingdom Come
Colin Edge
blank
Key: [F]
blank
This is the lyrics
So, how do I get the blank lines? (marked in red above)
Does this make sense?