Re: [Gambas-user] textedit html behaviour

2009-12-02 Thread Benoît Minisini
> Benoît Minisini schreef: > >>Hi, > >>I wanted to use a textEdit window to be able to do things like > >> bold/colored text etc for individual lines. > >>I noticed this behavoir: > >>sText = "Text" > >>FLogfiles.txtMainLog.Text = sText > >>Displays: > >>Text >

Re: [Gambas-user] textedit html behaviour

2009-12-02 Thread Ron
Benoît Minisini schreef: >>Hi, >>I wanted to use a textEdit window to be able to do things like >> bold/colored text etc for individual lines. >>I noticed this behavoir: >>sText = "Text" >>FLogfiles.txtMainLog.Text = sText >>Displays: >>Text >>sText = "T

Re: [Gambas-user] textedit html behaviour

2009-12-02 Thread Matti
I'm not sure if I understood precisely what you want to do, but: I spent some time trying to get formatted text into TextEdit and finally used WebBrowser instead. This works perfectly with html-text. Matti Ron schrieb: >Hi, >I wanted to use a textEdit window to be able to do things like

Re: [Gambas-user] textedit html behaviour

2009-12-02 Thread Benoît Minisini
>Hi, >I wanted to use a textEdit window to be able to do things like > bold/colored text etc for individual lines. >I noticed this behavoir: >sText = "Text" >FLogfiles.txtMainLog.Text = sText >Displays: >Text >sText = "Text" >FLogfiles.txtMainLog

[Gambas-user] textedit html behaviour

2009-12-02 Thread Ron
Hi, I wanted to use a textEdit window to be able to do things like bold/colored text etc for individual lines. I noticed this behavoir: sText = "Text" FLogfiles.txtMainLog.Text = sText Displays: Text sText = "Text" FLogfiles.txtMainLog.Insert(sText)