[Gambas-user] we need an update for report-ng

2010-01-11 Thread Charlie Reinl
Salut, we need an update for report-ng Mandriva Linux 2010.0 use also /etc/lsb-release see attached gambas_report.log -- Charlie [OperatingSystem] OperatingSystem=Linux KernelRelease=2.6.31.6-desktop-1mnb DistributionVendor=ubuntu DistributionRelease="Mandriva Linux 2010.0" [System] CPUArchit

Re: [Gambas-user] make fail (gambas3 rev 2603)

2010-01-11 Thread kobolds
I just add the libffi-devel package from yast . this package is not added by default Rolf-Werner Eilert wrote: > > Am 09.01.2010 18:51, schrieb kobolds: >> >> Fixed . thanks > > > How did you fix that? I had the same problem, so please describe > somewhat more in detail... > > Thank you. >

Re: [Gambas-user] Problem during Gambas 2.19 installation on Ubuntu 9.10

2010-01-11 Thread Fabien Bodard
ok you try that : cd /usr/src/gambas2-2.19.0/main sudo make uninstall make clean ./reconf ./configure -C make sudo make install gbi3 2010/1/11 matteo.l...@engicam.com : > this is my gbi2 output: > > mat...@matteo-laptop:/usr/src/gambas2-2.19.0$ sudo gbi2 > gb.qt.ext > gb.db.form > gb.gtk > gbi2:

Re: [Gambas-user] Problem during Gambas 2.19 installation on Ubuntu 9.10

2010-01-11 Thread matteo.l...@engicam.com
this is my gbi2 output: mat...@matteo-laptop:/usr/src/gambas2-2.19.0$ sudo gbi2 gb.qt.ext gb.db.form gb.gtk gbi2: warning: component gb.draw not found gb.qt gbi2: warning: component gb.draw not found gb.xml.xslt gb.xml gb.opengl gb.desktop gb.qt.kde gb.xml.rpc gb.compress gb.pdf gb.report gb.gui

Re: [Gambas-user] Problem during Gambas 2.19 installation on Ubuntu 9.10

2010-01-11 Thread Fabien Bodard
give me the output of gbi2 2010/1/11 matteo.l...@engicam.com : > Hi Fabien.. > > nothing is changed: > > ERROR: #27: Cannot load component 'gb.debug': cannot find > library file > > Have you any tips ? > > > - Original Message - > Da : Fabien Bodard > A : mailing list for gambas users

Re: [Gambas-user] Where is "user component directory"?

2010-01-11 Thread Fabien Bodard
the management tools for users component are really poor, i know ! I think we need something in the project/component tab to manage that. 2010/1/11 Charlie Reinl : > Am Sonntag, den 10.01.2010, 17:31 -0800 schrieb bbb888: >> Thanks Fabien, >> >> I forgot that I did a little cleanup/re-org befor

Re: [Gambas-user] Where is "user component directory"?

2010-01-11 Thread Charlie Reinl
Am Sonntag, den 10.01.2010, 17:31 -0800 schrieb bbb888: > Thanks Fabien, > > I forgot that I did a little cleanup/re-org before the upgrade and moved the > projects. > > The links in ~/.local/lib/gambas2 still existed and therefore pointed to a > non-existent place. Simply deleting them and re-m

Re: [Gambas-user] Problem during Gambas 2.19 installation on Ubuntu 9.10

2010-01-11 Thread matteo.l...@engicam.com
Hi Fabien.. nothing is changed: ERROR: #27: Cannot load component 'gb.debug': cannot find library file Have you any tips ? - Original Message - Da : Fabien Bodard A : mailing list for gambas users Oggetto : Re: [Gambas-user] Problem during Gambas 2.19 installation on Ubuntu 9.10 Data

Re: [Gambas-user] SOLVED - How to generate a new frame or pic box when a button is pressed

2010-01-11 Thread Werner
On 11/01/10 17:36, Fiddler63 wrote: > Wicked, I like it :-) > > > > PRIVATE $MX AS Integer > PRIVATE $MY AS Integer > > PUBLIC SUB Form_MouseDown() > > $MX = Mouse.ScreenX - ME.X > $MY = Mouse.ScreenY - ME.Y > > END > > PUBLIC SUB Form_MouseMove() > > ME.Move(Mouse.ScreenX - $MX, Mouse.Screen

Re: [Gambas-user] Problem during Gambas 2.19 installation on Ubuntu 9.10

2010-01-11 Thread Fabien Bodard
2010/1/11 matteo.l...@engicam.com : > > Hi Fabien and thanks for your reply > > I update my Ubuntu (Before my last reply I used the apt-get > string on the installation page) with your last apt-get > string and something is changed: > > now when I launch gambas2 I obtain: > > mat...@matteo-laptop:/

Re: [Gambas-user] SOLVED - How to generate a new frame or pic box when a button is pressed

2010-01-11 Thread Fiddler63
Wicked, I like it :-) PRIVATE $MX AS Integer PRIVATE $MY AS Integer PUBLIC SUB Form_MouseDown() $MX = Mouse.ScreenX - ME.X $MY = Mouse.ScreenY - ME.Y END PUBLIC SUB Form_MouseMove() ME.Move(Mouse.ScreenX - $MX, Mouse.ScreenY - $MY) END It's like that :) 2010/1/11 Fiddler63 : > >

Re: [Gambas-user] Problem during Gambas 2.19 installation on Ubuntu 9.10

2010-01-11 Thread matteo.l...@engicam.com
Hi Fabien and thanks for your reply I update my Ubuntu (Before my last reply I used the apt-get string on the installation page) with your last apt-get string and something is changed: now when I launch gambas2 I obtain: mat...@matteo-laptop:/usr/src/gambas2-2.19.0$ gambas2 ERROR: #27: Cannot l

Re: [Gambas-user] make fail (gambas3 rev 2603)

2010-01-11 Thread Rolf-Werner Eilert
Am 09.01.2010 18:51, schrieb kobolds: > > Fixed . thanks How did you fix that? I had the same problem, so please describe somewhat more in detail... Thank you. Rolf > > > Benoît Minisini wrote: >> >>> I tried with rev 2604 but still get same error . >>> >>> here I attach the log >>> >>> http:

Re: [Gambas-user] Problem during Gambas 2.19 installation on Ubuntu 9.10

2010-01-11 Thread Fabien Bodard
More upto date ... and i've updated on the wiki too ... so gb3 can compile Too with all components. sudo apt-get install build-essential autoconf libbz2-dev libfbclient2 libmysqlclient15-dev unixodbc-dev libpq-dev libsqlite0-dev libsqlite3-dev libgtk2.0-dev libldap2-dev libcurl4-gnutls-dev libgtk

Re: [Gambas-user] How to generate a new frame or pic box when a button is pressed

2010-01-11 Thread Fabien Bodard
PRIVATE $MX AS Integer PRIVATE $MY AS Integer PUBLIC SUB Form_MouseDown() $MX = Mouse.ScreenX - ME.X $MY = Mouse.ScreenY - ME.Y END PUBLIC SUB Form_MouseMove() ME.Move(Mouse.ScreenX - $MX, Mouse.ScreenY - $MY) END It's like that :) 2010/1/11 Fiddler63 : > > Fab, thanks for that. > I

Re: [Gambas-user] Problem during Gambas 2.19 installation on Ubuntu 9.10

2010-01-11 Thread Ricardo Díaz Martín
On before gambas installation on ubuntu 9.10 you must to do this: sudo apt-get install build-essential autoconf libbz2-dev libfbclient2 libmysqlclient15-dev unixodbc-dev libpq-dev libsqlite0-dev libsqlite3-dev libgtk2.0-dev libldap2-dev libcurl4-gnutls-dev libgtkglext1-dev libpcre3-dev libsdl-soun