Re: [Gambas-user] Issue 243 in gambas: (WHISH) Allow to set header color in gridview

2012-04-27 Thread gambas
Comment #3 on issue 243 by kokok...@gmail.com: (WHISH) Allow to set header color in gridview http://code.google.com/p/gambas/issues/detail?id=243 Sorry for the late, yesterday my connection was so bad it was unable to get the latest svn revision. I checked now, it works fine, thanks

[Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-04-27 Thread M. Cs.
I've installed Precise KDE today and also Gambas3 3.1.1 from Kendek's PPA. The problem is, when I start to type a code into IDE editor, there's a dislocation of cursor. The cursor is actually 1 place to the right instead of the right position. So It is difficult to use it. Any ideas?

Re: [Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-04-27 Thread Benoît Minisini
Le 27/04/2012 12:24, M. Cs. a écrit : I've installed Precise KDE today and also Gambas3 3.1.1 from Kendek's PPA. The problem is, when I start to type a code into IDE editor, there's a dislocation of cursor. The cursor is actually 1 place to the right instead of the right position. So It is

Re: [Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-04-27 Thread M. Cs.
Thanks! Changing the font from Monospace to Ubuntu solved the thing. Csaba 2012/4/27, Benoît Minisini gam...@users.sourceforge.net: Le 27/04/2012 12:24, M. Cs. a écrit : I've installed Precise KDE today and also Gambas3 3.1.1 from Kendek's PPA. The problem is, when I start to type a code

Re: [Gambas-user] Issue 240 in gambas: CheckBox Tristate View on Runtime

2012-04-27 Thread gambas
Comment #5 on issue 240 by benoit.m...@gmail.com: CheckBox Tristate View on Runtime http://code.google.com/p/gambas/issues/detail?id=240 Here is two screenshots of the three states of tristate checkboxes displayed by a Gambas program using gb.gtk. The first one uses Ambiance theme, the

Re: [Gambas-user] Issue 239 in gambas: Hide columns in tableview

2012-04-27 Thread gambas
Updates: Status: Fixed Comment #5 on issue 239 by benoit.m...@gmail.com: Hide columns in tableview http://code.google.com/p/gambas/issues/detail?id=239 This is because you set the column width before the column title. When setting the column title, the column width is adjusted to the

Re: [Gambas-user] Issue 239 in gambas: Hide columns in tableview

2012-04-27 Thread gambas
Comment #6 on issue 239 by flynetin...@gmail.com: Hide columns in tableview http://code.google.com/p/gambas/issues/detail?id=239 What disoriented me is that in previous versions worked fine that way. I'll have to correct the order in all programs. Thanks

Re: [Gambas-user] gb3: incorrect solution to If...Then condition

2012-04-27 Thread Jussi Lahtinen
If Sin(0.5) ^ 2 + Cos(0.5) ^ 2 1 Then Print This shouldn't be seen, but it is. Endif ? format((Sin(0.5) ^ 2 + Cos(0.5) ^ 2),#.) 1 What is going on? Jussi 2012/4/27 Benoît Minisini gam...@users.sourceforge.net Le 27/04/2012 05:08, Kevin Fishburne a écrit :

Re: [Gambas-user] gb3: incorrect solution to If...Then condition

2012-04-27 Thread nando
Notice that -1,1102230246252E-16 is -0.00011102230246252 which can be viewed as 'zero' in certain circumstances. If I may suggest.. Use an INT to control your zoom levels then work the trig from that. The INT for zoom would be your primary data. Using floats can be very messy over

Re: [Gambas-user] gb3: incorrect solution to If...Then condition

2012-04-27 Thread Benoît Minisini
Le 27/04/2012 20:44, Jussi Lahtinen a écrit : If Sin(0.5) ^ 2 + Cos(0.5) ^ 2 1 Then Print This shouldn't be seen, but it is. Endif ? format((Sin(0.5) ^ 2 + Cos(0.5) ^ 2),#.) 1 What is going on? Jussi It's very strange actually. There is optimization in the ^

Re: [Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-04-27 Thread Benoît Minisini
Le 27/04/2012 21:52, M. Cs. a écrit : Maybe it does. Although I marked this problem as solved after changing the font, the problem also persist with the new font selection too. Kendek, the packager for Ubuntu's PPA also confirmed that since v. 3.0 he did encounter several times this problem.

Re: [Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-04-27 Thread Benoît Minisini
Le 28/04/2012 00:02, Benoît Minisini a écrit : Le 27/04/2012 21:52, M. Cs. a écrit : Maybe it does. Although I marked this problem as solved after changing the font, the problem also persist with the new font selection too. Kendek, the packager for Ubuntu's PPA also confirmed that since v. 3.0

[Gambas-user] Making installation package from IDE for Slackware fails

2012-04-27 Thread Willy Raets
Hi all, I just tried making installation packages in Gambas3 of one of my applications. All packages but Slackware are made correctly. Slackware fails. See attached screenshot for details Willy [System] OperatingSystem=Linux Kernel=2.6.32-41-generic Architecture=i686 Memory=1017160 kB

Re: [Gambas-user] gb3: incorrect solution to If...Then condition

2012-04-27 Thread Jussi Lahtinen
At least the problem is unrelated to sin and cos... ? format(0.47942553860420300027 ^ 2 - 0.22984884706593014129,#.##) - .0012212453 ? format(0.47942553860420300027 ^ 2.0 - 0.22984884706593014129 ,#.##) - .0011379786 Jussi

Re: [Gambas-user] gb3: incorrect solution to If...Then condition

2012-04-27 Thread Benoît Minisini
Le 28/04/2012 01:24, Jussi Lahtinen a écrit : At least the problem is unrelated to sin and cos... ? format(0.47942553860420300027 ^ 2 - 0.22984884706593014129,#.##) - .0012212453 ? format(0.47942553860420300027 ^ 2.0 - 0.22984884706593014129