Re: [Gambas-user] OpenAL (gb.openal) example code

2015-10-19 Thread Kevin Fishburne
On 09/15/2015 01:49 AM, Kevin Fishburne wrote: > > Currently using Alure.BufferDataFromFile to load sound files into > OpenAL buffers I'm unable to get the buffer properties using the > Al.GetBufferi function. I don't know if this is because I'm using > Alure versus the regular Al method, but th

[Gambas-user] [Gambas Bug Tracker] Bug #822: still can enter "$$" character to entry box (vendor name, vendor prefix and tag).

2015-10-19 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.822&from=L21haW4- Benoît MINISINI changed the state of the bug to: Accepted. -- ___ Gambas-user mailing list Gambas-user@list

[Gambas-user] [Gambas Bug Tracker] Bug #822: still can enter "$$" character to entry box (vendor name, vendor prefix and tag).

2015-10-19 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.822&from=L21haW4- Comment #1 by Benoît MINISINI: Mmm... Not easy to fix correctly. -- ___ Gambas-user mailing list Gambas-use

[Gambas-user] [Gambas Bug Tracker] Bug #823: Strange Eval Behavior in gb.qt4.webkit

2015-10-19 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.823&from=L21haW4- Benoît MINISINI changed the state of the bug to: Rejected. -- ___ Gambas-user mailing list Gambas-user@list

[Gambas-user] [Gambas Bug Tracker] Bug #823: Strange Eval Behavior in gb.qt4.webkit

2015-10-19 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.823&from=L21haW4- Comment #1 by Benoît MINISINI: You should provide a project. Gambas has no implementation of WebKit nor JavaScript on its own. Everything is provided by the QT4 library. I mean, GetView().Eval() is just a call to the QT4 evaluat

[Gambas-user] [Gambas Bug Tracker] Bug #823: Strange Eval Behavior in gb.qt4.webkit

2015-10-19 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.823&from=L21haW4- Jonathan LEE reported a new bug. Summary --- Strange Eval Behavior in gb.qt4.webkit Type : Bug Priority : Low Gambas version : 3.8 Product : QT4 component Description --- So with the

Re: [Gambas-user] What happened to the wiki?

2015-10-19 Thread Moviga Technologies
Oh! OK:) -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] What happened to the wiki?

2015-10-19 Thread Benoît Minisini
Le 20/10/2015 00:54, Moviga Technologies a écrit : > > > What happened to the wiki? See screenshot. > I changed the style sheet. -- Benoît Minisini -- ___ Gambas-user mailing

[Gambas-user] What happened to the wiki?

2015-10-19 Thread Moviga Technologies
What happened to the wiki? See screenshot. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] Endless DATA event in Table

2015-10-19 Thread Benoît Minisini
Le 19/10/2015 19:20, Rolf-Werner Eilert a écrit : >> > > Finally, I found the reason: I must write tbk.Data.Background, not > tbk.Background. > > That made it so slow! > > Regards > Rolf > Of course, sorry that I didn't see that! It triggers a refresh, and so you get your infinite redraw loop. -

Re: [Gambas-user] Endless DATA event in Table

2015-10-19 Thread Rolf-Werner Eilert
Am 15.10.2015 18:53, schrieb Benoît Minisini: > Le 15/10/2015 18:23, Rolf-Werner Eilert a écrit : >> Am 15.10.2015 18:11, schrieb Benoît Minisini: >>> Le 15/10/2015 17:51, Rolf-Werner Eilert a écrit : In my project there is a TabView with 4 tabs, on two of them there is a TableView. And

Re: [Gambas-user] Sqlite, Delete field from table

2015-10-19 Thread Johny Provoost
Op 19-10-15 om 17:55 schreef Benoît Minisini: Le 19/10/2015 17:38, Johny Provoost a écrit : Hallo, Is it possible to delete a field in a table from a SQLite database through gambas code? with FMain.tmpSQL = "ALTER TABLE " & FMain.lstTables.Text & " ADD " & FieldNew.txtFieldname.Text & "

Re: [Gambas-user] Sqlite, Delete field from table

2015-10-19 Thread Benoît Minisini
Le 19/10/2015 17:38, Johny Provoost a écrit : > Hallo, > > Is it possible to delete a field in a table from a SQLite database > through gambas code? > > with > FMain.tmpSQL = "ALTER TABLE " & FMain.lstTables.Text & " ADD " & > FieldNew.txtFieldname.Text & " " & FieldNew.cmbFieldType.Text >

[Gambas-user] Sqlite, Delete field from table

2015-10-19 Thread Johny Provoost
Hallo, Is it possible to delete a field in a table from a SQLite database through gambas code? with FMain.tmpSQL = "ALTER TABLE " & FMain.lstTables.Text & " ADD " & FieldNew.txtFieldname.Text & " " & FieldNew.cmbFieldType.Text FMain.openSQL = FMain.$hConnLocl.EXEC(FMain.tmpSQL) I can add