[Gambas-user] [Gambas Bug Tracker] Bug #1121: Tabstrip color.

2017-06-16 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1121&from=L21haW4- Sean CON added an attachment: Screenshot_20170617_034736.png -- Check out the vibrant tech community on one of the world's most engaging tech sites, S

[Gambas-user] [Gambas Bug Tracker] Bug #1120: segmentation fault

2017-06-16 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1120&from=L21haW4- Sean CON reported a new bug. Summary --- segmentation fault Type : Bug Priority : High Gambas version : 3.9 Product : Unknown Description --- Gambas in Manjaro Linux (see uname belo

[Gambas-user] [Gambas Bug Tracker] Bug #1121: Tabstrip color.

2017-06-16 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1121&from=L21haW4- Sean CON reported a new bug. Summary --- Tabstrip color. Type : Bug Priority : Medium Gambas version : Unknown Product : Unknown Description --- The tabstrip label foreground color

Re: [Gambas-user] sqlite3 component can't seem to handle very large numbers

2017-06-16 Thread Benoît Minisini via Gambas-user
Le 17/06/2017 à 01:31, Tobias Boege a écrit : On Sat, 17 Jun 2017, Herman Borsje wrote: When I retrieve a result from a sqlite3 database which holds very large numbers in some fields, I get weird results. Up to 10 digits works okay, but larger numbers are incorrect. Any ideas as to what's going

Re: [Gambas-user] sqlite3 component can't seem to handle very large numbers

2017-06-16 Thread Tobias Boege
On Sat, 17 Jun 2017, Herman Borsje wrote: > When I retrieve a result from a sqlite3 database which holds very large > numbers in some fields, I get weird results. Up to 10 digits works okay, but > larger numbers are incorrect. Any ideas as to what's going wrong? > > I am using Gambas 3.9.2 on Linu

[Gambas-user] sqlite3 component can't seem to handle very large numbers

2017-06-16 Thread Herman Borsje
When I retrieve a result from a sqlite3 database which holds very large numbers in some fields, I get weird results. Up to 10 digits works okay, but larger numbers are incorrect. Any ideas as to what's going wrong? I am using Gambas 3.9.2 on Linux Mint 18.1 Tabledef: id INTEGER, name TEXT; Da

Re: [Gambas-user] DesktopWindow.Name; Unexpected result

2017-06-16 Thread adamn...@gmail.com
On Fri, 16 Jun 2017 16:47:06 +0200 Gianluigi wrote: > Thank you very much. > So if I understand well, there is no difference between the two properties. > > Regards > Gianluigi > > 2017-06-16 15:19 GMT+02:00 adamn...@gmail.com : > > > On Fri, 16 Jun 2017 15:07:20 +0200 > > Gianluigi wrote: >

Re: [Gambas-user] sqlite gambas table info?

2017-06-16 Thread PICCORO McKAY Lenz
umm interesting, great tobias, thanks... Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-06-16 16:17 GMT-04:00 Tobias Boege : > On Fri, 16 Jun 2017, PICCORO McKAY Lenz wrote: > > its there some code to get BEFORE send the query the fields of the table? > > > > i mean, in the f

Re: [Gambas-user] sqlite gambas table info?

2017-06-16 Thread Tobias Boege
On Fri, 16 Jun 2017, PICCORO McKAY Lenz wrote: > its there some code to get BEFORE send the query the fields of the table? > > i mean, in the following code example i already know the column name, but i > need firts detect column name to send amount of filters > > sCriteria *=* "id = &1"iParamete

Re: [Gambas-user] sqlite gambas table info?

2017-06-16 Thread PICCORO McKAY Lenz
yeah--- that i was done.. as you confirmed.. its the only solution due mysql has the DESCRIBE command, but sqlite need to search in master table... thanks Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-06-16 15:47 GMT-04:00 : > Maybe a previous query like: > > SELECT TOP

Re: [Gambas-user] sqlite gambas table info?

2017-06-16 Thread d4t4full
Maybe a previous query like:   SELECT TOP 1 * FROM would help with the FOR EACH loop. Don't really know your case though. Regards, zxMarce On Jun 16, 2017, 16:40, at 16:40, PICCORO McKAY Lenz wrote: >2017-06-16 15:04 GMT-04:00 ML : > >> Does this help? >> >> Dim fld as Field >> For Each

Re: [Gambas-user] sqlite gambas table info?

2017-06-16 Thread PICCORO McKAY Lenz
2017-06-16 15:04 GMT-04:00 ML : > Does this help? > > Dim fld as Field > For Each fld In Result.Fields > ... do whatever with field names > Next > err zxMarce.. that need a previous query... and i need the filed BEFORE made the query jajajaj quite strange but that its! > > zxMarce > >

Re: [Gambas-user] sqlite gambas table info?

2017-06-16 Thread ML
On 16/06/17 14:48, PICCORO McKAY Lenz wrote: > its there some code to get BEFORE send the query the fields of the table? > > i mean, in the following code example i already know the column name, but i > need firts detect column name to send amount of filters > > sCriteria *=* "id = &1"iParameter *=

[Gambas-user] sqlite gambas table info?

2017-06-16 Thread PICCORO McKAY Lenz
its there some code to get BEFORE send the query the fields of the table? i mean, in the following code example i already know the column name, but i need firts detect column name to send amount of filters sCriteria *=* "id = &1"iParameter *=* *1012*$hConn*.*Begin' Same as "SELECT * FROM tblDEFAU

Re: [Gambas-user] static ? in variables

2017-06-16 Thread PICCORO McKAY Lenz
2017-06-16 11:26 GMT-04:00 Tobias Boege : > A static variable is stored in the *class* and shared by all objects. > If you modify a static variable from one object, it will change for all > objects. This is orthogonal to visibility. You can combine Static with > Public or Private. Neither implies

Re: [Gambas-user] static ? in variables

2017-06-16 Thread Tobias Boege
On Fri, 16 Jun 2017, PICCORO McKAY Lenz wrote: > tested was a cache doc problem maybe.. thanks ... > > i now understand clarelly about class using static and private.. but for > variables: > wiki was: > "If the static keyword is specified, the same variable will be shared with > every object of th

Re: [Gambas-user] DesktopWindow.Name; Unexpected result

2017-06-16 Thread Gianluigi
Thank you very much. So if I understand well, there is no difference between the two properties. Regards Gianluigi 2017-06-16 15:19 GMT+02:00 adamn...@gmail.com : > On Fri, 16 Jun 2017 15:07:20 +0200 > Gianluigi wrote: > > > Please take a look at the attached test. > > From DesktopWindow.Name I

Re: [Gambas-user] static ? in variables

2017-06-16 Thread PICCORO McKAY Lenz
tested was a cache doc problem maybe.. thanks ... i now understand clarelly about class using static and private.. but for variables: wiki was: "If the static keyword is specified, the same variable will be shared with every object of this class." well seems "Public var" and "Static public var" a

Re: [Gambas-user] DesktopWindow.Name; Unexpected result

2017-06-16 Thread adamn...@gmail.com
On Fri, 16 Jun 2017 15:07:20 +0200 Gianluigi wrote: > Please take a look at the attached test. > From DesktopWindow.Name I would expect the name of the Form Name property, > and instead I get the Title. > Do you think it should be reported as a bug? > > Regards > Gianluigi No, that is 100% corr

[Gambas-user] DesktopWindow.Name; Unexpected result

2017-06-16 Thread Gianluigi
Please take a look at the attached test. >From DesktopWindow.Name I would expect the name of the Form Name property, and instead I get the Title. Do you think it should be reported as a bug? Regards Gianluigi TestWindowName-0.0.1.tar.gz Description: GNU Zip compressed data --

Re: [Gambas-user] static ? in variables

2017-06-16 Thread PICCORO McKAY Lenz
umm i tested your "test.tar.gz" in gambas 3.1.1 and does not raised that behaviour.. now i must go to my work and tested in gambas 3.9 due here was where the problem .. when the pup up help advise raises show that could be instanciated.. but i just tested your "test.tar.gz" project attached previo

Re: [Gambas-user] static ? in variables

2017-06-16 Thread Tobias Boege
On Fri, 16 Jun 2017, adamn...@gmail.com wrote: > On Fri, 16 Jun 2017 12:38:50 +0200 > Tobias Boege wrote: > > > Can you give a full project? The attached project contains everything > > you said about your class, and it works. It is instantiable. Is the > > *error message* really that the class c

Re: [Gambas-user] static ? in variables

2017-06-16 Thread adamn...@gmail.com
On Fri, 16 Jun 2017 12:38:50 +0200 Tobias Boege wrote: > Can you give a full project? The attached project contains everything > you said about your class, and it works. It is instantiable. Is the > *error message* really that the class cannot be instantiated or is > there another error which jus

Re: [Gambas-user] static ? in variables

2017-06-16 Thread Tobias Boege
On Thu, 15 Jun 2017, PICCORO McKAY Lenz wrote: > tobias..now making a library in the ide, the class that not have the > "create static" now not permits instanciate the class > > i only put a variable static, rest of class not have create static > > Export > > Private dblocal As String = "file1.