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

2009-01-22 Thread richard terry
On Fri, 23 Jan 2009 02:01:15 am 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) > .F

Re: [Gambas-user] Signal 11 while initializing a property

2009-01-22 Thread Simonart Dominique
Hi Julien, You are right! I read your post and I understand the reason, but you don't speak about Signal 11, so I was thinking for another problem although similar regards, Dominique Simonart Jussi Lahtinen a écrit : > Hi! > > Is hMyClass declared as Object[] ? > If so, READ cannot recognise hMy

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

2009-01-22 Thread Randy
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.Add("account", db.String, 12) .Fields.Add("description"

Re: [Gambas-user] Signal 11 while initializing a property

2009-01-22 Thread Jussi Lahtinen
Hi! Is hMyClass declared as Object[] ? If so, READ cannot recognise hMyClass[i].X as byte. See my earlier post "Minor bug with READ & WRITE commands?". I think you have same problem than I did, and in fact it is not bug. Jussi On Thu, Jan 22, 2009 at 1:06 AM, Dominique SIMONART wrote: > Hi e