Re: [Gambas-user] gb3: signal 11 on formatting a date

2011-06-28 Thread Kevin Fishburne
On 06/28/2011 06:34 AM, Benoît Minisini wrote: >> Dim DateCurrent as Float >> DateCurrent = -1.71063190910317E+10 >> Print Format$(CDate(DateCurrent), " d, , hh:nn:AM/PM") >> >> I was experimenting and randomly ran across this bug. It looks like the >> CDate function works, but that formatt

Re: [Gambas-user] Issue 69 in gambas: Application.ToolTip.Enable = False fails on gtk+

2011-06-28 Thread gambas
Updates: Labels: -GUI-Any GUI-GTK Comment #2 on issue 69 by benoit.m...@gmail.com: Application.ToolTip.Enable = False fails on gtk+ http://code.google.com/p/gambas/issues/detail?id=69 (No comment was entered for this change.) ---

Re: [Gambas-user] Issue 71 in gambas: Signal #11

2011-06-28 Thread gambas
Updates: Status: NeedsInfo Labels: -Version Version-2.22.0 Comment #3 on issue 71 by benoit.m...@gmail.com: Signal #11 http://code.google.com/p/gambas/issues/detail?id=71 (No comment was entered for this change.) --

Re: [Gambas-user] Issue 70 in gambas: Package build wizard increments project version number of project being built

2011-06-28 Thread gambas
Updates: Status: Accepted Labels: -Version Version-TRUNK Comment #1 on issue 70 by benoit.m...@gmail.com: Package build wizard increments project version number of project being built http://code.google.com/p/gambas/issues/detail?id=70 (No comment was entered for this change.)

Re: [Gambas-user] Issue 69 in gambas: Application.ToolTip.Enable = False fails on gtk+

2011-06-28 Thread gambas
Updates: Status: Accepted Labels: -Version Version-TRUNK Comment #1 on issue 69 by benoit.m...@gmail.com: Application.ToolTip.Enable = False fails on gtk+ http://code.google.com/p/gambas/issues/detail?id=69 (No comment was entered for this change.)

Re: [Gambas-user] Issue 68 in gambas: ./reconf-all error

2011-06-28 Thread gambas
Updates: Status: Invalid Comment #2 on issue 68 by benoit.m...@gmail.com: ./reconf-all error http://code.google.com/p/gambas/issues/detail?id=68 (No comment was entered for this change.) -- All of the data gener

Re: [Gambas-user] Issue 1 in gambas: Gambas 3 has not been release yet

2011-06-28 Thread gambas
Updates: Status: Started Comment #4 on issue 1 by benoit.m...@gmail.com: Gambas 3 has not been release yet http://code.google.com/p/gambas/issues/detail?id=1 (No comment was entered for this change.) -- All of

Re: [Gambas-user] gb3: Format$

2011-06-28 Thread Benoît Minisini
> El 28/06/11 19:05, Benoît Minisini escribió: > >> Well. what I'm missing here? > >> > >> I got the same results with rev.3906: > >> Print Format$(Now, "hh:nn") > >> Print Format$(Now, "hh:nn AM/PM") > >> > >> > >> 18:36 > >> 06:36 > >> > >> Finally, shouldn't the last line show "AM" or

Re: [Gambas-user] Menu over a control

2011-06-28 Thread M. Cs.
Merci Fabien! 2011/6/28, Fabien Bodard : > Public sub _New() dim i as integer > > dim hTextLabel as TextLabel > > For i = 0 to 100 > hTextLabel = new TextLabel(Me) as "MyText" > hTextLabel.Tag = i > next > end > > Public Sub MyText_Click() > > select case Last.Tag > Case 1 >'Text

Re: [Gambas-user] gb3: Format$

2011-06-28 Thread EA7DFH
El 28/06/11 19:05, Benoît Minisini escribió: >> >> Well. what I'm missing here? >> >> I got the same results with rev.3906: >> >> Print Format$(Now, "hh:nn") >> Print Format$(Now, "hh:nn AM/PM") >> >> 18:36 >> 06:36 >> >> Finally, shouldn't the last line show "AM" or "PM" at the end? >> > >

Re: [Gambas-user] Menu over a control

2011-06-28 Thread Fabien Bodard
Public sub _New() dim i as integer dim hTextLabel as TextLabel For i = 0 to 100 hTextLabel = new TextLabel(Me) as "MyText" hTextLabel.Tag = i next end Public Sub MyText_Click() select case Last.Tag Case 1 'Text1 Case 2 'Text2 'etc end end 2011/6/28 M. Cs. :

[Gambas-user] Menu over a control

2011-06-28 Thread M. Cs.
How can í create a flying menu over a dinamically created control? I know how can I do it for static elements, but if I have an array of let say TextLabels, how can I attach a menu to each of the elements (in order to get and use X and Y coordinates of the controls) ? Is It possible to use Object.

Re: [Gambas-user] gb3: Format$

2011-06-28 Thread Benoît Minisini
> > Well. what I'm missing here? > > I got the same results with rev.3906: > > Print Format$(Now, "hh:nn") > Print Format$(Now, "hh:nn AM/PM") > > 18:36 > 06:36 > > Finally, shouldn't the last line show "AM" or "PM" at the end? > "AM" or "PM" are actually displayed only if your languag

Re: [Gambas-user] gb3: Format$

2011-06-28 Thread EA7DFH
El 26/06/11 23:37, Kevin Fishburne escribió: > On 06/26/2011 03:09 PM, Benoît Minisini wrote: I hope I'm really not so stupid that I'm missing something obvious. I'm not even drinking right now! >>> >>> Mmm... You're right, there's something nasty there. I'm currently >>> investigating...

Re: [Gambas-user] Component Loading

2011-06-28 Thread tobias
hi, > What do you want to do exactly? > nothing, i just wanted to know where these compiled classes are. if i use an executable. i couldn't imagine that it is really not unpacked temporarily, but accessed directly... anyway, thanks for the answer. ---

Re: [Gambas-user] Seg fault, rev 3903, odbc db selecting... how to...

2011-06-28 Thread Caveat
Benoit: Thanks! I can confirm the crash no longer occurs. All: I just wish I could say it's working... :-( In Gambas, I don't see any datasources to choose from when I hit the button at the right of the Database field. I can type in the name of my datasource (E4Y) but Gambas reports that it can'

Re: [Gambas-user] Component Loading

2011-06-28 Thread Benoît Minisini
> hi, > > oh well, it's a very confusing subject in my email, i'm sorry, it's > about class loading as a preparation for component loading... > i figured it out by myself and the sources... > every class is compiled, named with capital letters without extension > put into .gambas (in my gambas2) i

Re: [Gambas-user] Seg fault, rev 3903, odbc db selecting

2011-06-28 Thread Benoît Minisini
> > Create project with database support. > > > > Go to Connections in left navigation pane, New connection... > > > > Complete dialog as per attached screenshot, click on the icon to the > > right of Database field (should bring up an odbc selector, I reckon). > > > > Segmentation fault :-( > >

Re: [Gambas-user] gb3: signal 11 on formatting a date

2011-06-28 Thread Benoît Minisini
> Dim DateCurrent as Float > DateCurrent = -1.71063190910317E+10 > Print Format$(CDate(DateCurrent), " d, , hh:nn:AM/PM") > > I was experimenting and randomly ran across this bug. It looks like the > CDate function works, but that formatting it doesn't. Fixed in revision #3904. Regards,

Re: [Gambas-user] Seg fault, rev 3903, odbc db selecting

2011-06-28 Thread Benoît Minisini
> Create project with database support. > > Go to Connections in left navigation pane, New connection... > > Complete dialog as per attached screenshot, click on the icon to the > right of Database field (should bring up an odbc selector, I reckon). > > Segmentation fault :-( > > Regards, > Cav

[Gambas-user] Seg fault, rev 3903, odbc db selecting

2011-06-28 Thread Caveat
Create project with database support. Go to Connections in left navigation pane, New connection... Complete dialog as per attached screenshot, click on the icon to the right of Database field (should bring up an odbc selector, I reckon). Segmentation fault :-( Regards, Caveat <>