Re: [Gambas-user] something need to be done with the compiler

2009-07-07 Thread Doriano Blengino
Benoît Minisini ha scritto: >> Benoît Minisini wrote: >> I have been trying learn gambas for a month now , I quite happy with it other than the compiler . the compiler just too stupid . when I code a program and some time typo or forget the fill a parameter of a funct

Re: [Gambas-user] something need to be done with the compiler

2009-07-07 Thread Benoît Minisini
> Benoît Minisini wrote: > >> I have been trying learn gambas for a month now , I quite happy with it > >> other than the compiler . > >> the compiler just too stupid . when I code a program and some time typo > >> or > >> forget the fill a parameter of a function , the compiler just ignore it > >

Re: [Gambas-user] something need to be done with the compiler

2009-07-07 Thread kobolds
Benoît Minisini wrote: > >> I have been trying learn gambas for a month now , I quite happy with it >> other than the compiler . >> the compiler just too stupid . when I code a program and some time typo >> or >> forget the fill a parameter of a function , the compiler just ignore it . >> >> I

Re: [Gambas-user] something need to be done with the compiler

2009-07-07 Thread Benoît Minisini
> I have been trying learn gambas for a month now , I quite happy with it > other than the compiler . > the compiler just too stupid . when I code a program and some time typo or > forget the fill a parameter of a function , the compiler just ignore it . > > I spend more time to trace such stupid

[Gambas-user] something need to be done with the compiler

2009-07-07 Thread kobolds
I have been trying learn gambas for a month now , I quite happy with it other than the compiler . the compiler just too stupid . when I code a program and some time typo or forget the fill a parameter of a function , the compiler just ignore it . I spend more time to trace such stupid problem o

Re: [Gambas-user] Bug in Database manager

2009-07-07 Thread kobolds
Benoît Minisini wrote: > >> > what I mention is also happen when you using the database manager to >> > create the table and the default value . this happen if the field type >> > is string . create a table (sqlite) using database manager . create a >> > field type string . enter the default v

Re: [Gambas-user] one project, two executable. How to?

2009-07-07 Thread Benoît Minisini
> May be two separate projects and calling your executable (2nd program) > from within main program? > > EXEC ["your2ndprogram.gambas"] > > Never tested, though. > > Regards > > Jesus > Thanks to Unix, the name of the program is put in Application.Args[0]. So you can create a symbolic link on you

Re: [Gambas-user] Window not closable

2009-07-07 Thread Stefano Palmeri
Il martedì 7 luglio 2009 16:04:09 Pino Zollo ha scritto: > Hi, > Is there a way to make a window/form that can not be closed by the user ? > (Without the X) > > Regards > > Pino With this code: PUBLIC SUB Form_Close() STOP EVENT END Ciao, Stefano

Re: [Gambas-user] one project, two executable. How to?

2009-07-07 Thread Jesus Guardon
May be two separate projects and calling your executable (2nd program) from within main program? EXEC ["your2ndprogram.gambas"] Never tested, though. Regards Jesus Joshua Higgins escribió: > I tried to do this but never found a solution. Seemed easier to create two > projects. > > 2009/7/7 g

Re: [Gambas-user] Window not closable

2009-07-07 Thread Pino Zollo
Il martedì 7 luglio 2009 12:57:11 hai scritto: > I think you can just cancel it in the onClose event of the window. > I personally use windows without borders or anything that simply have no > close button on them, it's nicer > i think, but of course you are leaving the desktop look, which might no

Re: [Gambas-user] one project, two executable. How to?

2009-07-07 Thread Joshua Higgins
I tried to do this but never found a solution. Seemed easier to create two projects. 2009/7/7 guiodic > > hi to all, > > I need to make two ececutable in my project. > > Or in alternative, to execute a form like a separate process. > > Is it possible? > -- > View this message in context: > http:

Re: [Gambas-user] Window not closable

2009-07-07 Thread Steven revimmo
Hi, I think you can just cancel it in the onClose event of the window. I personally use windows without borders or anything that simply have no close button on them, it's nicer i think, but of course you are leaving the desktop look, which might not be acceptable. Steven Le mardi 07 juillet 200

[Gambas-user] Window not closable

2009-07-07 Thread Pino Zollo
Hi, Is there a way to make a window/form that can not be closed by the user ? (Without the X) Regards Pino -- Key ID: 0xF6768208 Key fingerprint = B16D 0A7C 5B29 A334 CE6A 71F6 EAF8 3D88 F676 8208 Key server: hkp://wwwkeys.eu.pgp.net --

Re: [Gambas-user] Bug in Database manager

2009-07-07 Thread Benoît Minisini
> > what I mention is also happen when you using the database manager to > > create the table and the default value . this happen if the field type > > is string . create a table (sqlite) using database manager . create a > > field type string . enter the default value 'O' .save . refresh /reload