Re: [Gambas-user] Another possible bug with GridView

2012-12-18 Thread M. Cs.
I've discovered that there cannot be mixed usage of bold and non-bold fonts in the same column of a gridView at the same time. Is this correct? I mean like: text1 *text2* *text3* text4 Can this be enabled somehow? Thanks! Csaba 2012/12/18 M. Cs. > Public Sub filer_Data(i As Integer, j As Inte

Re: [Gambas-user] Another possible bug with GridView

2012-12-18 Thread M. Cs.
Public Sub filer_Data(i As Integer, j As Integer) Dim szin As String Select Case j Case 0 filer.Data.Text = content[i] Case 1 filer.Data.Text = preview[i] If scheck.Value = True Then szin = SecurityCheck(preview[i], i) If szin = "green" Then filer.Data.Background = Color.Whi

Re: [Gambas-user] Another possible bug with GridView

2012-12-18 Thread Benoît Minisini
Le 18/12/2012 12:19, M. Cs. a écrit : >If clr = "green" Then filer[i, 1].Background = Color.Green >If clr = "yellow" Then filer[i, 1].Background = Color.Yellow >If clr = "red" Then filer[i, 1].Background = Color.Red > > This code clears the content of filer[i.1].Text instead of painting

[Gambas-user] Another possible bug with GridView

2012-12-18 Thread M. Cs.
If clr = "green" Then filer[i, 1].Background = Color.Green If clr = "yellow" Then filer[i, 1].Background = Color.Yellow If clr = "red" Then filer[i, 1].Background = Color.Red This code clears the content of filer[i.1].Text instead of painting the background into green, yellow or red. The fil