Re: [Gambas-user] TextEdit copy&Paste and removal of hyper tags

2009-10-05 Thread stderr
ot;ö". See http://personalwebs.oakland.edu/~grossman/ascii.codes.html here . So either 'clipboard.paste' or 'textedit.copy', transforms from UTF-8 to HTML code. >Maybe I will find some time to make a new rich text editor control based on a >Qt 4 widget for Gambas

[Gambas-user] TextEdit copy&Paste and removal of hyper tags

2009-09-29 Thread stderr
hi, I wanted to make a text editor that recognized hyper links. So I used 'TextEdit'. To extract the plain text I tried to use SelectAll + Copy + Paste like this: PUBLIC SUB Form_Open() DIM txt AS String PRINT "“abc”" TextEdit1.Text = "“abc”" TextEdit1.SelectAll() TextEdit1.Cop