[Gambas-user] Release of Gambas 2.11.1

2009-02-01 Thread Benoit Minisini
Hi, Here is a release to fix last-minute bugs in the 2.11 version: * The arithmetic operations on Boolean, Byte and Short now behave correctly when an overflow occurs. * The compiler message displayed when there is a syntax error in a FOR...NEXT loop is correct now. * The GridView now stret

Re: [Gambas-user] Gambas & PostgreSQL cannot create index. relation XXX does not exist.

2009-02-01 Thread Randy
Benoit Minisini wrote: > On jeudi 22 janvier 2009, Randy wrote: > >> Hello. >> >> New to Gambas and having problems with following code: >> >> STATIC PUBLIC FUNCTION CreateGLTables() >> >> DIM hTable AS Table >> >> hTable = Global.$hConn.Tables.Add("glcoa") >> WITH hTable >> .Fields.Ad

Re: [Gambas-user] pdf's no longer rendering

2009-02-01 Thread Benoit Minisini
On dimanche 1 février 2009, richard terry wrote: > I've noticed this for a number of versions (currently using 1838) > > Unknown symbol 'get picture' in class pdfpage > dies, the demo is the same. > > Regards > > richard It is just a matter of replacing .GetPicture() by Image.Picture in the source

[Gambas-user] pdf's no longer rendering

2009-02-01 Thread richard terry
I've noticed this for a number of versions (currently using 1838) Unknown symbol 'get picture' in class pdfpage > dies, the demo is the same. Regards richard <>-- This SF.net email is sponsored by: SourcForge Community

Re: [Gambas-user] timers in console app

2009-02-01 Thread Benoit Minisini
On dimanche 1 février 2009, Benoit Minisini wrote: > On dimanche 1 février 2009, Joshua Higgins wrote: > > This is my code, but it doesn't seem to work. > > > > PUBLIC SUB Main() > > > > DIM timer1 AS NEW Timer > > timer1.Delay = 100 > > timer1.Enabled = TRUE > > > > END > > > > PUBLIC SUB ti

Re: [Gambas-user] timers in console app

2009-02-01 Thread Benoit Minisini
On dimanche 1 février 2009, Joshua Higgins wrote: > This is my code, but it doesn't seem to work. > > PUBLIC SUB Main() > > DIM timer1 AS NEW Timer > timer1.Delay = 100 > timer1.Enabled = TRUE > > END > > PUBLIC SUB timer1_Timer() > > PRINT "hello" > > END > > Whats wrong here? > See the d

Re: [Gambas-user] timers in console app

2009-02-01 Thread Doriano Blengino
Joshua Higgins ha scritto: > This is my code, but it doesn't seem to work. > > PUBLIC SUB Main() > > DIM timer1 AS NEW Timer > You must specify the clause ' AS "timer1" ', because no events will be fired otherwise. DIM timer1 AS NEW Timer as "timer1" Not really sure you can do that

Re: [Gambas-user] gambas3

2009-02-01 Thread Ron_1st
On Sunday 01 February 2009, Charlie Reinl wrote: > Am Samstag, den 31.01.2009, 04:20 +0100 schrieb Benoit Minisini: > > On samedi 31 janvier 2009, Ron_1st wrote: =8<== > > something I found today (think Ron 1. said it) > This is the output from 'svn checkout ... ' > > Wieder her

Re: [Gambas-user] timers in console app

2009-02-01 Thread Joshua Higgins
This is my code, but it doesn't seem to work. PUBLIC SUB Main() DIM timer1 AS NEW Timer timer1.Delay = 100 timer1.Enabled = TRUE END PUBLIC SUB timer1_Timer() PRINT "hello" END Whats wrong here? 2009/2/1 Benoit Minisini > On dimanche 1 février 2009, Joshua Higgins wrote: > > Is it

Re: [Gambas-user] Gambas & PostgreSQL cannot create index. relation XXX does not exist.

2009-02-01 Thread Ron_1st
On Sunday 01 February 2009, Benoit Minisini wrote: > On jeudi 22 janvier 2009, Randy wrote: > > Hello. > > > > New to Gambas and having problems with following code: > > > > STATIC PUBLIC FUNCTION CreateGLTables() > > > > DIM hTable AS Table > > > > hTable = Global.$hConn.Tables.Add("glcoa") >

Re: [Gambas-user] timers in console app

2009-02-01 Thread Benoit Minisini
On dimanche 1 février 2009, Joshua Higgins wrote: > Is it possible to use timers in console apps? Of course. -- Benoit Minisini -- This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your s

[Gambas-user] timers in console app

2009-02-01 Thread Joshua Higgins
Is it possible to use timers in console apps? -- joshua higgins >>-- -- This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword __

Re: [Gambas-user] Minor bug with READ & WRITE commands?

2009-02-01 Thread Benoit Minisini
On lundi 19 janvier 2009, Jussi Lahtinen wrote: > I agree. > But there should be warning message in documentation of read and write > commands. > > > Jussi > I added a big warning on the documentation page of the READ and WRITE instructions. -- Benoit Minisini -

Re: [Gambas-user] Warning with Gambas 3

2009-02-01 Thread Benoit Minisini
On mercredi 21 janvier 2009, Benoit Minisini wrote: > > Now, Image are always transparent, and the syntax is: > > > New Image(Optional Width As Integer, Optional Height As Integer, Optional > Format As Integer, Optional Color As Integer) > > The syntax has changed again: The Colo

Re: [Gambas-user] Gambas & PostgreSQL cannot create index. relation XXX does not exist.

2009-02-01 Thread Benoit Minisini
On jeudi 22 janvier 2009, Randy wrote: > Hello. > > New to Gambas and having problems with following code: > > STATIC PUBLIC FUNCTION CreateGLTables() > > DIM hTable AS Table > > hTable = Global.$hConn.Tables.Add("glcoa") > WITH hTable > .Fields.Add("company", db.String, 3) > .Fields.

Re: [Gambas-user] Strange message error

2009-02-01 Thread Benoit Minisini
On dimanche 1 février 2009, Benoit Minisini wrote: > On dimanche 1 février 2009, Leonardo Miliani wrote: > > I know that the following code is wrong 'cause Gambas doesn't accept > > multiply instructions on 1 row but I would report the strange message > > error that I get: > > "Unespected k > > all

Re: [Gambas-user] Strange message error

2009-02-01 Thread Benoit Minisini
On dimanche 1 février 2009, Leonardo Miliani wrote: > I know that the following code is wrong 'cause Gambas doesn't accept > multiply instructions on 1 row but I would report the strange message > error that I get: > "Unespected k > alla riga ." (at row) [where there is the FOR loop] > > Co

[Gambas-user] Strange message error

2009-02-01 Thread Leonardo Miliani
I know that the following code is wrong 'cause Gambas doesn't accept multiply instructions on 1 row but I would report the strange message error that I get: "Unespected k alla riga ." (at row) [where there is the FOR loop] Code: --- DIM A, b AS Integer FOR a =

Re: [Gambas-user] gambas3

2009-02-01 Thread Charlie Reinl
Am Samstag, den 31.01.2009, 04:20 +0100 schrieb Benoit Minisini: > On samedi 31 janvier 2009, Ron_1st wrote: > > On Saturday 31 January 2009, Benoit Minisini wrote: > > > On vendredi 30 janvier 2009, Ron_1st wrote: > > > > Question to Benoit > > > > I have 2 directories for aclocal, aclocal and acl