Re: [Gambas-user] from ubuntu to archlinux

2009-11-03 Thread Ricardo Díaz Martín
Maybe you can try adding a file .Xresources with Xft.dpi: 90 or less inside home's folder of each user. 2009/11/3 > richard terry wrote: > > On Tuesday 03 November 2009 23:32:11 nando wrote: > > > >> Hello > >> first of all, sorry about my english. > >> > >> My problem is, 5 days ago i switched

Re: [Gambas-user] Karmic sqlite problem.

2009-11-03 Thread R. Stormo
Benoît Minisini wrote: > > > > Can you try the latest fix on 2.0 from trunk? Without that fix, sometimes > the > IDE cannot start the project and hangs, because of a problem in the > debugger. > > -- > Benoît Minisini > > > I have now tried it from trunk. The problem is still there. It'

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread nospam.nospam.nos...@gmail.com
On Tue, 2009-11-03 at 19:58 +0100, Benoît Minisini wrote: > It should be fixed in revision #2408. Only people installing Gambas locally > like you got the bug. Where is the revision number to be found? -- Let Crystal R

Re: [Gambas-user] DataView bug?

2009-11-03 Thread Benoît Minisini
> Gambas 2.17 / Debian sid package > Postgresql 8.4.1 > gb.qt > > Hi, > > I made a small test with a DataView; sorting is working for > all columns except for the primary key one: it _only_ > restore natural order (1, 2, 3, ..) but don't display a > reverse order with

Re: [Gambas-user] DataView bug?

2009-11-03 Thread Jean-Yves F. Barbier
Benoît Minisini a écrit : >> Gambas 2.17 / Debian sid package >> Postgresql 8.4.1 >> gb.qt >> >> Hi, >> >> I made a small test with a DataView; sorting is working for >> all columns except for the primary key one: it _only_ >> restore natural order (1, 2, 3, ..) but don

[Gambas-user] Misc Bugs: GTK

2009-11-03 Thread Steven James Drinnan
I have noticed these little annoying problems. Again it is with the GTK component and how it inherits settings. 1. Textboxes, comboboxes ... - they correctly do not inherit the background color but they incorrectly inherit the foreground colour. I.E text boxes and any other input boxes need not

Re: [Gambas-user] from ubuntu to archlinux

2009-11-03 Thread richard terry
On Tuesday 03 November 2009 23:32:11 nando wrote: > Hello > first of all, sorry about my english. > > My problem is, 5 days ago i switched from ubuntu 9.04 (kde) to archlinux wise move, great distro - are you using gambas3? if so I have a PKGBUILD you can use. > (kde). I have a program to manage

Re: [Gambas-user] from ubuntu to archlinux

2009-11-03 Thread zachsmith022
richard terry wrote: > On Tuesday 03 November 2009 23:32:11 nando wrote: > >> Hello >> first of all, sorry about my english. >> >> My problem is, 5 days ago i switched from ubuntu 9.04 (kde) to archlinux >> > > wise move, great distro - are you using gambas3? if so I have a PKGBUILD you >

Re: [Gambas-user] synchronize 2 DataSource

2009-11-03 Thread Jean-Yves F. Barbier
Benoît Minisini a écrit : >> Hi, >> >> is it possible to synchronize 2 DataSource onto 2 different forms?: >> I want A to only have a tabular display (such as DataView), and B >> to be the create/modif/delete one (w/ DataControls); so I want B >> to display the selected line in A at opening. >> >

Re: [Gambas-user] code editor displays incorrect colors and character formatting

2009-11-03 Thread Benoît Minisini
> I just recently compiled and installed GAMBAS 2.17.0 from the package > provided here: > > http://prdownloads.sourceforge.net/gambas/gambas2-2.17.0.tar.bz2?download > > and while it appears to run and execute programs properly it displays the > wrong colors and text formatting in the code edito

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread Benoît Minisini
> On Tue, 2009-11-03 at 09:04 +0100, Ron wrote: > > When using revision 2407 you cannot start the IDE anymore. > > 2407, being? > > And of course, it's Gambas that's at fault, not you or your OS, yes? > > No such problem here, honey, peach, sugar. > > > ERROR: #27: Cannot load component 'gb.qt'

Re: [Gambas-user] Karmic sqlite problem.

2009-11-03 Thread Benoît Minisini
> > I just wanted to get Gambas database manager to work with my current OS > Ubuntu Karmic because I needed it badly, and I don't want to install > phpmysqladmin stuff. > > So I loaded the gambas/2.0/app/src/gambas2-database-manager project in > the IDE, and changed it's project components pro

Re: [Gambas-user] from ubuntu to archlinux

2009-11-03 Thread nando
Hi, i was just trying to fix it, and it is something with qt and gtk components (i think) Thank you El mar, 03-11-2009 a las 18:39 +0200, Jussi Lahtinen escribió: > What is your Gambas version? 2.? > And did it change when your OS change? > I had similar problem with earlier Gambas3 revision, a

[Gambas-user] synchronize 2 DataSource

2009-11-03 Thread Jean-Yves F. Barbier
Hi, is it possible to synchronize 2 DataSource onto 2 different forms?: I want A to only have a tabular display (such as DataView), and B to be the create/modif/delete one (w/ DataControls); so I want B to display the selected line in A at opening. -- Academicians care, that's who. -

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread Benoît Minisini
> Have been looking a bit closer. > > The bug is in rev 2401, it's related to the recent gambas install path > changes. > > It looks in the wrong directory (strace gambas2) > > lstat64("/usr/local/bin/lib/gambas2/gb.qt.so", 0xbfebc470) = -1 ENOENT > (No such file or directory) > lstat64("/usr/l

[Gambas-user] DataView bug?

2009-11-03 Thread Jean-Yves F. Barbier
Gambas 2.17 / Debian sid package Postgresql 8.4.1 gb.qt Hi, I made a small test with a DataView; sorting is working for all columns except for the primary key one: it _only_ restore natural order (1, 2, 3, ..) but don't display a reverse order with a second click. B

Re: [Gambas-user] module or class?

2009-11-03 Thread Fabien Bodard
the difference is simple a classe must be instanciate before to be called dim hClass as new MyClass hClass.Procedure -- A module is static : Module.Proc But in gambas you can call class proc like with a module if this class is static 'Gambas class CREATE STATIC Public Sub MyProc

Re: [Gambas-user] module or class?

2009-11-03 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : > the difference is simple > > a classe must be instanciate before to be called > > > dim hClass as new MyClass > > hClass.Procedure > > > > -- > > A module is static : > > Module.Proc > > > > But in gambas you can call class proc like with a module if this c

Re: [Gambas-user] synchronize 2 DataSource

2009-11-03 Thread Benoît Minisini
> Hi, > > is it possible to synchronize 2 DataSource onto 2 different forms?: > I want A to only have a tabular display (such as DataView), and B > to be the create/modif/delete one (w/ DataControls); so I want B > to display the selected line in A at opening. > Not automatically, but why not us

Re: [Gambas-user] Re Bug on SVN

2009-11-03 Thread Jussi Lahtinen
If you use gmail, I highly recommend to turn on "Forgotten Attachment Detector". Works very well! Jussi On Tue, Nov 3, 2009 at 18:42, Jussi Lahtinen wrote: > Seems that you have forgot attachments! > > Jussi > > > > On Tue, Nov 3, 2009 at 15:09, Fabien Bodard wrote: >> Alway on kubuntu karmic

Re: [Gambas-user] Re Bug on SVN

2009-11-03 Thread Jussi Lahtinen
Seems that you have forgot attachments! Jussi On Tue, Nov 3, 2009 at 15:09, Fabien Bodard wrote: > Alway on kubuntu karmic  9.10: > > when i open a project with forms :i've the bug1.png dialog > > and when i validate it i return on welcome form . but if i try a new > time,  the ide is invisibl

Re: [Gambas-user] from ubuntu to archlinux

2009-11-03 Thread Jussi Lahtinen
What is your Gambas version? 2.? And did it change when your OS change? I had similar problem with earlier Gambas3 revision, and I did fix it manually. Do you forms have Scaled property on? If so forms are scaled with desktop font size. Jussi On Tue, Nov 3, 2009 at 14:32, nando wrote: > Hello

[Gambas-user] module or class?

2009-11-03 Thread Jean-Yves F. Barbier
Hi all, I don't understand very well the difference(s) between these two kinds; doc says if I put a procedure in a module I can call it directly, but in fact I can't: I must call it with its prefix, such as in a class: module.procedure So what's really the difference? JY -- -

Re: [Gambas-user] Karmic sqlite problem.

2009-11-03 Thread Doriano Blengino
Ron ha scritto: > Ron wrote: >> >> I'm running Karmic too now, and I can use my software with MySQL >> database on it, no problem. >> >> But the database manager is acting quite strangely too here, after >> creating the first connection (localhost, type mysql, sql user and >> password, db name)

Re: [Gambas-user] Karmic sqlite problem.

2009-11-03 Thread R. Stormo
Been trying to figure out what's going wrong and by removing everything on my startform and include one piece at the time I have come up with this. The Fakturalist is a HBox. Also tried with other containers same result. ' This do crash in Ubuntu Karmic 'ME.Width = desktop.Width Here is how my

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread Ron
Have been looking a bit closer. The bug is in rev 2401, it's related to the recent gambas install path changes. It looks in the wrong directory (strace gambas2) lstat64("/usr/local/bin/lib/gambas2/gb.qt.so", 0xbfebc470) = -1 ENOENT (No such file or directory) lstat64("/usr/local/bin/lib/gamb

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread Fabien Bodard
i've a fresh install... 2009/11/3 Ricardo Díaz Martín : > I've try to compile gambas3 (from trunk folder) on today and works fine. > > I think there is something in ubuntu 9.10but I don't know yet. I update > recently to 9.10 from 9.04 and on before I compiled gambas2 whitout > problems. > > >

[Gambas-user] from ubuntu to archlinux

2009-11-03 Thread nando
Hello first of all, sorry about my english. My problem is, 5 days ago i switched from ubuntu 9.04 (kde) to archlinux (kde). I have a program to manage my company, wich worked ok. Now all the forms and controls in the program are in the wrong place. I mean, in full screen, in ubuntu i was able to s

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread Ricardo Díaz Martín
I've try to compile gambas3 (from trunk folder) on today and works fine. I think there is something in ubuntu 9.10but I don't know yet. I update recently to 9.10 from 9.04 and on before I compiled gambas2 whitout problems. 2009/11/3 Fabien Bodard > ron... > > i've stop to compile qt3 libs

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread Fabien Bodard
ron... i've stop to compile qt3 libs since ... undred revision not you ? is benoit have chage the qt4 libname to qt ? 2009/11/3 Ron : > nospam.nospam.nos...@gmail.com wrote: >> On Tue, 2009-11-03 at 09:04 +0100, Ron wrote: >> >> >>> When using revision 2407 you cannot start the IDE anymore. >>>

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread Ricardo Díaz Martín
Ron, I got the same problem with this version (2407) on ubuntu 9.10x86_64 Please "nospam", respect! 2009/11/3 Ron > nospam.nospam.nos...@gmail.com wrote: > > On Tue, 2009-11-03 at 09:04 +0100, Ron wrote: > > > > > >> When using revision 2407 you cannot start the IDE anymore. > >> > > > > 2407,

[Gambas-user] Re Bug on SVN

2009-11-03 Thread Fabien Bodard
Alway on kubuntu karmic 9.10: when i open a project with forms :i've the bug1.png dialog and when i validate it i return on welcome form . but if i try a new time, the ide is invisible but gbr3 is alway running The same thing append on terminal project, but on the second try the ide is shown a

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread Ron
nospam.nospam.nos...@gmail.com wrote: > On Tue, 2009-11-03 at 09:04 +0100, Ron wrote: > > >> When using revision 2407 you cannot start the IDE anymore. >> > > 2407, being? > > And of course, it's Gambas that's at fault, not you or your OS, yes? > > No such problem here, honey, peach, sugar.

Re: [Gambas-user] SidePanel

2009-11-03 Thread nospam.nospam.nos...@gmail.com
On Mon, 2009-11-02 at 21:34 +0100, Ron wrote: > Benoît Minisini schreef: > >> I have tried with different GTK+ styles with no luck. > >> Maybe someone else running an Ubuntu Karmic 32bits can give SidePanel a > >> try. Thanks, > >> Toni > >> > >> > > > > I have upgraded my Ubuntu 9.04 to Ubun

Re: [Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread nospam.nospam.nos...@gmail.com
On Tue, 2009-11-03 at 09:04 +0100, Ron wrote: > When using revision 2407 you cannot start the IDE anymore. 2407, being? And of course, it's Gambas that's at fault, not you or your OS, yes? No such problem here, honey, peach, sugar. > ERROR: #27: Cannot load component 'gb.qt': cannot find libra

[Gambas-user] BUG Gambas stable [2407] broken

2009-11-03 Thread Ron
When using revision 2407 you cannot start the IDE anymore. $ gambas2 ERROR: #27: Cannot load component 'gb.qt': cannot find library file Going back a few revs and it works again. ~/install/gambas/2.0$ svn -r 2400 up Uapp/src/gambas2/.project Umain/gbx/gbx_project.c Umain/gbc/gbi.c U