Re: [Gambas-user] New gb.web.form component

2015-11-27 Thread Moviga Technologies
Are you making Gambas IDE as a webapp??? or are you just playing around? -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/

[Gambas-user] xmlreader

2015-11-27 Thread roberto
Hi to All, I can not read an XML file with comment(s) because when the XmlReader reads a line of comment () then the read method go immediately at the end of the file and EOF is true it's a bug? Regards -- ___

[Gambas-user] R: GridView and RichText

2015-11-27 Thread Ru Vuott
I suggest..exemplum: Private s As New String[3, 3] Public Sub Form_Open() With GridView1 .Rows.Count = 3 .Columns.Count = 3 End With s[1, 0] = "Blue" s[1, 1] = "bold" s[1, 2] = "italic" End Public Sub GridView1_Data(Row As Integer, Column As Integer) If (Row =

Re: [Gambas-user] Clicking a TreeView item by program

2015-11-27 Thread Rolf-Werner Eilert
Am 25.11.2015 18:07, schrieb Benoît Minisini: > Le 25/11/2015 17:58, Rolf-Werner Eilert a écrit : >> Am 25.11.2015 13:59, schrieb Benoît Minisini: >>> Le 25/11/2015 09:07, Rolf-Werner Eilert a écrit : In one of my older projects, there was kinda timeout after 2 minutes of inactivity. In

[Gambas-user] GridView and RichText

2015-11-27 Thread Rolf-Werner Eilert
In a GridView, I have this line (and similar ones) in the Data event: tbk.Data.RichText = "" & ktText[Row] & "" But it doesn't do anything to the text. Here the text should be italics, bold and blue. What am I doing wrong? Regards Rolf ---