Re: [Gambas-user] Errors compiling on Ubuntu 17.04 zesty

2017-06-20 Thread PICCORO McKAY Lenz
no jit on recents systems due changes!

its very frustrating the constans changes on the software world..

every day we are more like M$!

why update and changes if are working? *ah of course, securyity the always
working excuse!*



Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com

2017-06-20 11:13 GMT-04:30 Benoît Minisini via Gambas-user <
gambas-user@lists.sourceforge.net>:

> Le 20/06/2017 à 17:38, Gianluigi a écrit :
>
>> A friend of ours of Italian forum who has Ubuntu 17.04 zesty, compiling
>> Gambas gets error of Impossible to find package for libsage-dev and
>> llvm-3.5-dev.
>> I searched on https://packages.ubuntu.com/ and concerning llvm the oldest
>> library available in zesty is 3.7, while concerning libsage I get nothing,
>> but looking in descriptions for Supports OpenGL in SDL applications, I
>> seemed to understand that gambas3-gb-opengl-sge should replace it.
>> How to change the LLVM_CONFIG = llvm-config-3.5 command if there is no
>> 3.5?
>> Can you help me?
>>
>> Regards
>>
>> Gianluigi
>>
>
> You cannot compile gb.jit anymore on recent Ubuntu systems, as they
> removed llvm 3.5. So just let it be disabled.
>
> And don't specify libsage-dev, it should work without. If not, just tell
> me.
>
> Regards,
>
> --
> Benoît Minisini
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #1113: ODBC driver problem: driver connects but does not exec query

2017-06-20 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1113=L21haW4-

Comment #13 by PICCORO LENZ MCKAY:

i think your patch are not so "ugly" due relies on the bad behaviour of the 
ODBC and SQL standar, i mean umm jajaja its very confusing that the ODBC paper 
said after a "susessfull sql ddl" return SQL_NO_DATA event SQL_SUCCESS, but 
with M$ behind scenes.. no surprises..

analizing, if the SQL running was successfully and its no a SQL DML must 
retrieve as response SQL_SUCCESS, the problem maybe are on that cases:

UPDATE, DELETE and INSERT does not retrieve any rows, only notifies was afected 
rows.. so return a SQL_NO_DATA, but are DML, so the only case that return data 
its the SELECT case... so we can assume that any other statement will no return 
never some data.. only "affected rows" so for any SQL query made, we can 
assumed SQL_SUCCESS if no problem was happened.. the only exception will be 
SELECT and for those are not usefully due we not have proper CURSOR, only a 
FORWARD ONLY cursor...

due that explanation, i think the only you can do its to assume that behaviour 
of the "ugly patch", so or SQL_SUCCESS or not...


as a informative for others, SQL querys can be divided into two parts: The Data 
Manipulation Language (DML) querys and the Data Definition Language (DDL) querys

CAUTION: in the stupid mysql and sqlite, the ALTER query has a "afected rows" 
behavior due some info are stored on tables...

EXAMPLES OF SQL DML:

SELECT – this retriebve data always or not
UPDATE – not retrieve data, only "affected rows"
DELETE – not retrieve data, only "affected rows"
INSERT INTO – not retrieve data, only "affected rows"

EXAMPLES OF SQL DDL:

CREATE DATABASE – no any data, only "succesfull or not"
ALTER DATABASE – no any data, only "succesfull or not"
CREATE TABLE – no any data, only "succesfull or not"
ALTER TABLE – no any data, only "succesfull or not"
DROP TABLE – no any data, only "succesfull or not"
CREATE INDEX – crea un índice.
DROP INDEX – borra un índice.

PICCORO LENZ MCKAY changed the state of the bug to: Accepted.



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #1113: ODBC driver problem: driver connects but does not exec query

2017-06-20 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1113=L21haW4-

Comment #12 by zxMarce:

I'm on it, already fixed, but the way I fixed it not only is not elegant, but 
also plain ugly. 

I would like to get Benoît's opinion on this as well, because the patch 
consists in changing a return code from an ODBC subsystem call so the Gambas 
call does not fail (as I said already, the query is run, but ODBC returns a 
code that was not being taken into account). 

When the query is run by ODBC and returns rows, the return code is SQL_SUCCESS. 
When the query runs but there's no data to retrieve, the same call responds 
SQL_NO_DATA. These constants' values are obviously different. The patch simply 
forces SQL_NO_DATA to be SQL_SUCCESS, but I simply tried a coupla queries, I 
don't really know if this "solution" covers all cases. 

zxMarce.



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] (Main) Form won't close - how to tell the user why

2017-06-20 Thread adamn...@gmail.com
On Tue, 20 Jun 2017 06:37:08 -0700 (MST)
Charlie  wrote:

> adamn...@gmail.com wrote
> > When they attempt to close the main form, the event loop won't terminate.
> > Which is proper. However, I need to be able to tell the user to close the
> > "such and such window". How can I find out which process is blocking the
> > end of the event loop?
> 
> You could try hiding the Main form and only closing it when the user closes
> the other forms. Have a look at the attached program.
> 
> GUITest.tar   
> 
> 


-- 
B Bruen 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] missing wiki gridview.rows.selection

2017-06-20 Thread Tobias Boege
On Tue, 20 Jun 2017, PICCORO McKAY Lenz wrote:
> NOW I HAVE ANOTHER QUUESTION, since what gambas version was implemented? in
> 3.1 this are not!.. in 3.5 exist! so 3.4? 3.3?
> 

I doubt anyone remembers this. You'll have to ask subversion.

Regards,
Tobi

-- 
"There's an old saying: Don't change anything... ever!" -- Mr. Monk

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Errors compiling on Ubuntu 17.04 zesty

2017-06-20 Thread Gianluigi
I had immediately answered to the mail of Benoit but here [0] not appear,
what am I doing wrong?

Regards
Gianluigi

[0]
http://gambas.8142.n7.nabble.com/Errors-compiling-on-Ubuntu-17-04-zesty-td59433.html

2017-06-20 17:38 GMT+02:00 Gianluigi :

> A friend of ours of Italian forum who has Ubuntu 17.04 zesty, compiling
> Gambas gets error of Impossible to find package for libsage-dev and
> llvm-3.5-dev.
> I searched on https://packages.ubuntu.com/ and concerning llvm the oldest
> library available in zesty is 3.7, while concerning libsage I get nothing,
> but looking in descriptions for Supports OpenGL in SDL applications, I
> seemed to understand that gambas3-gb-opengl-sge should replace it.
> How to change the LLVM_CONFIG = llvm-config-3.5 command if there is no 3.5?
> Can you help me?
>
> Regards
>
> Gianluigi
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #1122: SQL syntax highlighter does not respect continued (multiline) strings

2017-06-20 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1122=L21haW4-

Comment #2 by Benoît MINISINI:

It should be fixed with revision #8145.

Benoît MINISINI changed the state of the bug to: Fixed.



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #1113: ODBC driver problem: driver connects but does not exec query

2017-06-20 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1113=L21haW4-

Comment #11 by PICCORO LENZ MCKAY:

hi, any progress on this?



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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

2017-06-20 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1121=L21haW4-

Benoît MINISINI changed the state of the bug to: Accepted.




--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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

2017-06-20 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1121=L21haW4-

Comment #1 by Benoît MINISINI:

This is not the TabStrip control, but the TabPanel. And this is by design, for 
all multi-containers made in Gambas.

What is needed is a "TextColor" property that would define the foreground color 
of labels.



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] missing wiki gridview.rows.selection

2017-06-20 Thread PICCORO McKAY Lenz
you must take in consideration that i ask here due in ide that information
does not how.. so i assumed the wiki page not exist.., i go directly to
gridview of qt4 component and does not show that property so i assumed
confirmation of not existence...

so then after adamnt42 send that mail, was a cache problem as adamnt42
said in the threath "Follow up from ...row count partially incorrect"


NOW I HAVE ANOTHER QUUESTION, since what gambas version was implemented? in
3.1 this are not!.. in 3.5 exist! so 3.4? 3.3?


Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com

2017-06-19 23:18 GMT-04:30 adamn...@gmail.com :

> Piccoro,
> The documentation is there, it took me 4 clicks to get to it from the
> gb.qt4 page.  I'll change my previous comment to "Read AND LOOK AT EVERY
> word on the Gambas help page.
> gridview.Rows is a property that returns an object of the **virtual
> class** _GridView_Rows type.  So  you have to go there to see the
> description of that class. IOW in the syntax box notice that the
> _GridView_Rows word is a hyperlink to the page describing that class.
> b
>
>
> On Mon, 19 Jun 2017 23:04:51 -0430
> PICCORO McKAY Lenz  wrote:
>
> > the documentation for Rows.Selection i cannot found in wiki.. ide does
> not
> > show any documentation..
> >
> > i found that piede of code in the recet upload of the wGridfilter and no
> > doc its raised in ide:
> >
> > For n = 0 To $Grid.columns.Count - 1
> > valor = IIf($Grid[$Grid.Rows.Selection[c], n].text = "",
> > $Grid[$Grid.Rows.Selection[c], n].richText,
> $Grid[$Grid.Rows.Selection[c],
> > n].text)
> > clave = $Grid.rslt.Fields[n].Name
> > actual.Add(valor, clave)
> > Next
> >
> > any information about that symbol please!
> >
> >
> > Lenz McKAY Gerardo (PICCORO)
> > http://qgqlochekone.blogspot.com
> > 
> --
> > Check out the vibrant tech community on one of the world's most
> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > ___
> > Gambas-user mailing list
> > Gambas-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
>
>
> --
> B Bruen 
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] old question: detect gambas version in code

2017-06-20 Thread PICCORO McKAY Lenz
er tobias.. the #If saaid that only allow string values.. how the
comparison are do it?

i mean i want to compare the gambas version, so its for detection of a
lower rather that 3.5 :

#if Version <= 3.5
 print "version 3.4"
#endif

so i cannot see the value of the Version or how do the comparison, the wiki
dont say so much

Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com

2017-06-20 13:12 GMT-04:30 PICCORO McKAY Lenz :

> Excelent! thanks tobias
>
> Lenz McKAY Gerardo (PICCORO)
> http://qgqlochekone.blogspot.com
>
> 2017-06-20 13:05 GMT-04:30 Tobias Boege :
>
>> On Tue, 20 Jun 2017, PICCORO McKAY Lenz wrote:
>> > i want to make a piece of software work in both gambas olders (gambas3
>> <<
>> > 3.5) and gambas newers (gambas >> 3.5.1)
>> >
>> > by example, the smtp has some changes depending on the version, also the
>> > gridview too..
>> >
>> > example:
>> >
>> > SMTP was rewriten in 3.6 so Body are not present in 3.5
>> > http://gambaswiki.org/wiki/comp/gb.net.smtp/smtpclient/body?nh
>> > this makes some of my code not work in embebed devices that does not run
>> > modern versions of linux and some libs required by gambas 3.9
>> >
>> > same behaviour with new rows.selection that are since 3.4
>> > http://gambaswiki.org/wiki/comp/gb.qt4/_gridview_rows/selection
>> >
>> > so there's a way to detect gambas version and paste code respect that?
>> (was
>> > answered some time ago, but i cannot find the mail)
>> >
>>
>> You can do a run-time check with System.FullVersion [1]. A compile-time
>> check is also possible by using the #If preprocessor syntax [2].
>>
>> Regards,
>> Tobi
>>
>> [1] http://gambaswiki.org/wiki/comp/gb/system/fullversion
>> [2] http://gambaswiki.org/wiki/lang/.if
>>
>> --
>> "There's an old saying: Don't change anything... ever!" -- Mr. Monk
>>
>> 
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> ___
>> Gambas-user mailing list
>> Gambas-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gambas-user
>>
>
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] old question: detect gambas version in code

2017-06-20 Thread PICCORO McKAY Lenz
Excelent! thanks tobias

Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com

2017-06-20 13:05 GMT-04:30 Tobias Boege :

> On Tue, 20 Jun 2017, PICCORO McKAY Lenz wrote:
> > i want to make a piece of software work in both gambas olders (gambas3 <<
> > 3.5) and gambas newers (gambas >> 3.5.1)
> >
> > by example, the smtp has some changes depending on the version, also the
> > gridview too..
> >
> > example:
> >
> > SMTP was rewriten in 3.6 so Body are not present in 3.5
> > http://gambaswiki.org/wiki/comp/gb.net.smtp/smtpclient/body?nh
> > this makes some of my code not work in embebed devices that does not run
> > modern versions of linux and some libs required by gambas 3.9
> >
> > same behaviour with new rows.selection that are since 3.4
> > http://gambaswiki.org/wiki/comp/gb.qt4/_gridview_rows/selection
> >
> > so there's a way to detect gambas version and paste code respect that?
> (was
> > answered some time ago, but i cannot find the mail)
> >
>
> You can do a run-time check with System.FullVersion [1]. A compile-time
> check is also possible by using the #If preprocessor syntax [2].
>
> Regards,
> Tobi
>
> [1] http://gambaswiki.org/wiki/comp/gb/system/fullversion
> [2] http://gambaswiki.org/wiki/lang/.if
>
> --
> "There's an old saying: Don't change anything... ever!" -- Mr. Monk
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] old question: detect gambas version in code

2017-06-20 Thread Tobias Boege
On Tue, 20 Jun 2017, PICCORO McKAY Lenz wrote:
> i want to make a piece of software work in both gambas olders (gambas3 <<
> 3.5) and gambas newers (gambas >> 3.5.1)
> 
> by example, the smtp has some changes depending on the version, also the
> gridview too..
> 
> example:
> 
> SMTP was rewriten in 3.6 so Body are not present in 3.5
> http://gambaswiki.org/wiki/comp/gb.net.smtp/smtpclient/body?nh
> this makes some of my code not work in embebed devices that does not run
> modern versions of linux and some libs required by gambas 3.9
> 
> same behaviour with new rows.selection that are since 3.4
> http://gambaswiki.org/wiki/comp/gb.qt4/_gridview_rows/selection
> 
> so there's a way to detect gambas version and paste code respect that? (was
> answered some time ago, but i cannot find the mail)
> 

You can do a run-time check with System.FullVersion [1]. A compile-time
check is also possible by using the #If preprocessor syntax [2].

Regards,
Tobi

[1] http://gambaswiki.org/wiki/comp/gb/system/fullversion
[2] http://gambaswiki.org/wiki/lang/.if

-- 
"There's an old saying: Don't change anything... ever!" -- Mr. Monk

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] old question: detect gambas version in code

2017-06-20 Thread PICCORO McKAY Lenz
i want to make a piece of software work in both gambas olders (gambas3 <<
3.5) and gambas newers (gambas >> 3.5.1)

by example, the smtp has some changes depending on the version, also the
gridview too..

example:

SMTP was rewriten in 3.6 so Body are not present in 3.5
http://gambaswiki.org/wiki/comp/gb.net.smtp/smtpclient/body?nh
this makes some of my code not work in embebed devices that does not run
modern versions of linux and some libs required by gambas 3.9

same behaviour with new rows.selection that are since 3.4
http://gambaswiki.org/wiki/comp/gb.qt4/_gridview_rows/selection

so there's a way to detect gambas version and paste code respect that? (was
answered some time ago, but i cannot find the mail)

Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Errors compiling on Ubuntu 17.04 zesty

2017-06-20 Thread Benoît Minisini via Gambas-user

Le 20/06/2017 à 17:38, Gianluigi a écrit :

A friend of ours of Italian forum who has Ubuntu 17.04 zesty, compiling
Gambas gets error of Impossible to find package for libsage-dev and
llvm-3.5-dev.
I searched on https://packages.ubuntu.com/ and concerning llvm the oldest
library available in zesty is 3.7, while concerning libsage I get nothing,
but looking in descriptions for Supports OpenGL in SDL applications, I
seemed to understand that gambas3-gb-opengl-sge should replace it.
How to change the LLVM_CONFIG = llvm-config-3.5 command if there is no 3.5?
Can you help me?

Regards

Gianluigi


You cannot compile gb.jit anymore on recent Ubuntu systems, as they 
removed llvm 3.5. So just let it be disabled.


And don't specify libsage-dev, it should work without. If not, just tell me.

Regards,

--
Benoît Minisini

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Errors compiling on Ubuntu 17.04 zesty

2017-06-20 Thread Gianluigi
A friend of ours of Italian forum who has Ubuntu 17.04 zesty, compiling
Gambas gets error of Impossible to find package for libsage-dev and
llvm-3.5-dev.
I searched on https://packages.ubuntu.com/ and concerning llvm the oldest
library available in zesty is 3.7, while concerning libsage I get nothing,
but looking in descriptions for Supports OpenGL in SDL applications, I
seemed to understand that gambas3-gb-opengl-sge should replace it.
How to change the LLVM_CONFIG = llvm-config-3.5 command if there is no 3.5?
Can you help me?

Regards

Gianluigi
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] (Main) Form won't close - how to tell the user why

2017-06-20 Thread Charlie
adamn...@gmail.com wrote
> When they attempt to close the main form, the event loop won't terminate.
> Which is proper. However, I need to be able to tell the user to close the
> "such and such window". How can I find out which process is blocking the
> end of the event loop?

You could try hiding the Main form and only closing it when the user closes
the other forms. Have a look at the attached program.

GUITest.tar   





-
Check out www.gambas.one 
--
View this message in context: 
http://gambas.8142.n7.nabble.com/Main-Form-won-t-close-how-to-tell-the-user-why-tp59428p59432.html
Sent from the gambas-user mailing list archive at Nabble.com.

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Follow up from "...row count partially incorrect"

2017-06-20 Thread adamn...@gmail.com
I was looking at this today and noticed that my offline help still showed an 
old version of that page. So I cleared my offline version and downloaded the 
help again.  Now the downloaded 
"timestamp" file says  "20160411" and the bz2 file is:
-rw-rw-r-- 1 bb bb 29249535 Apr 11  2016 ../wiki.tar.bz2

Am I doing something wrong?  This seems to be a very old version.

regards
b
-- 
B Bruen 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] (Main) Form won't close - how to tell the user why

2017-06-20 Thread Benoît Minisini via Gambas-user

Le 20/06/2017 à 07:44, adamn...@gmail.com a écrit :

I have a main form that has a lot of ways that the user can start
other processes from, some with wait and some without. When they
attempt to close the main form, the event loop won't terminate. Which
is proper. However, I need to be able to tell the user to close the
"such and such window". How can I find out which process is blocking
the end of the event loop?

regards b



You must keep the handles of your processes and check their status yourself.

Regards,

--
Benoît Minisini

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] wiki pages related to row count partially incorrect

2017-06-20 Thread Benoît Minisini via Gambas-user

Le 20/06/2017 à 05:29, PICCORO McKAY Lenz a écrit :

the gambas wiki about rows count are partially incorrect..

http://gambaswiki.org/wiki/comp/gb.db/result/count?l=en

the problem its that the cursor in most drivers return a Forwad Only and
due tat the count implementation couln not be...

the specification are better describe in the odbc related bugs in
gambaswiki please read it

and yeah, i'm too concentrate in wiki documentation, due causes too many
headaches to non-english speaker users.. due translations problems

Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com


Because that wiki page is about common drivers, not about the ODBC 
specific stuff.


--
Benoît Minisini

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user