Re: [Gambas-user] Bug in Database manager

2009-07-06 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 . the

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

2009-07-06 Thread 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://www.nabble.com/one-project%2C-two-executable.-How-to--tp24364405p24364405.html Sent from the gambas-user mailing list a

Re: [Gambas-user] Bug in Database manager

2009-07-06 Thread kobolds
Benoît Minisini wrote: > >> gambas 2.14 >> database sqlite >> >> I create table with 2 datetime fields (start_date , end_date) and default >> value current_timestamp . and 1 string field (stg_status) with default >> 'O' >> >> when I open using gambas database manager >> the 2 datetime field sho

Re: [Gambas-user] Bug in Database manager

2009-07-06 Thread Benoît Minisini
> gambas 2.14 > database sqlite > > I create table with 2 datetime fields (start_date , end_date) and default > value current_timestamp . and 1 string field (stg_status) with default 'O' > > when I open using gambas database manager > the 2 datetime field show , > start_date --> default show --> 0

[Gambas-user] Bug in Database manager

2009-07-06 Thread kobolds
gambas 2.14 database sqlite I create table with 2 datetime fields (start_date , end_date) and default value current_timestamp . and 1 string field (stg_status) with default 'O' when I open using gambas database manager the 2 datetime field show , start_date --> default show --> 0 end_date--->

Re: [Gambas-user] 2 dimensional string[]

2009-07-06 Thread Benoît Minisini
> Hi, > > > Can anyone help me? > I would like use 2 dimensional string but i cant do it. > String[x][y] > > If possible please send a sample. > > Thanks, Sevoir > Dim Donuts As String[2, 8] Print Donuts[1, 2] -- Benoît --

Re: [Gambas-user] 2 dimensional string[]

2009-07-06 Thread Szenográdi Norbert
2009. 07. 6, hétfő keltezéssel 15.13-kor Szenográdi Norbert ezt írta: > mailing list for gambas users I forgotten some info: I'm using: Gambas 2.8 Thanks.. -- ___ Gambas-u

[Gambas-user] 2 dimensional string[]

2009-07-06 Thread Szenográdi Norbert
Hi, Can anyone help me? I would like use 2 dimensional string but i cant do it. String[x][y] If possible please send a sample. Thanks, Sevoir -- ___ Gambas-user mailing li

Re: [Gambas-user] found interesting bug

2009-07-06 Thread kobolds
gambas 2.14 gui qt Benoît Minisini wrote: > >> I found very interesting bug . here how to emulate it (took me a while >> to >> trace it) >> >> 1 . create 2 module >> >> module Mtest1 >> >> public function test() as boolean >> >> error.raise("this is error 1") >> >> return true >> catch >

Re: [Gambas-user] found interesting bug

2009-07-06 Thread Benoît Minisini
> I found very interesting bug . here how to emulate it (took me a while to > trace it) > > 1 . create 2 module > > module Mtest1 > > public function test() as boolean > > error.raise("this is error 1") > > return true > catch > Mtest2.test2(error.text) > return false > end > > '__

[Gambas-user] found interesting bug

2009-07-06 Thread kobolds
I found very interesting bug . here how to emulate it (took me a while to trace it) 1 . create 2 module module Mtest1 public function test() as boolean error.raise("this is error 1") return true catch Mtest2.test2(error.text) return false end '__ modu