Re: [Gambas-user] Conect to Firebird

2009-05-15 Thread cristian abarzua
Gracias Sergio. Parece que descubri el problema.El que no me apareciera firebird en el gestor de base de datos es que habia instalado una version superior de gamas y parece que no habia quedado bien intalado. Reinstale Ubuntu y ahora aparece (remedio extremo) Gracias por tu ayuda. Saludos 2009/

Re: [Gambas-user] Conect to Firebird

2009-05-15 Thread cristian abarzua
Hello. Thanks for the pdf, then just take the form of connection. The problem is not connected to the database. through isql-fb can connect but not through Gambas. Do you know if someone has managed to connect to Firebird? Regards 2009/5/15 Sergio A. Hernandez > In your Package Manager (YAST/

Re: [Gambas-user] Conect to Firebird

2009-05-15 Thread Sergio A. Hernandez
In your Package Manager (YAST/Synaptic/Etc) make sure that the following packages are installed (or in your case the first 3): gambas2-gb-db gambas2-gb-db-firebird gambas2-gb-db-form gambas2-gb-db-mysql gambas2-gb-db-odbc gambas2-gb-db-postgresql gambas2-gb-db-sqlite You can see the Beginners Gui

Re: [Gambas-user] Conect to Firebird

2009-05-15 Thread cristian abarzua
Hello. I tried the ODBC, but can not connect. This odbc is there to download it from somewhere? Regards 2009/5/15 cristian abarzua > Hello > > I tried to connect to the firebird server on my computer with the following > instructions: > > PUBLIC SUB Button1_Click() > > DIM $hConn AS NEW Con

[Gambas-user] Gambas Scripting Language - Some Questions

2009-05-15 Thread Sergio A. Hernandez
Hello all, I have some questions about the scripting language. I need a little help. Question 1- The gbs2 scripter only have access to the gb. internal native class? 2- How can I use other components as the gb.XML? 3- Why my scripts dont run directly even when I am including the first line #!/usr/b

Re: [Gambas-user] Conect to Firebird

2009-05-15 Thread Sergio A. Hernandez
Try with the ODBC driver. On Fri, May 15, 2009 at 4:56 PM, cristian abarzua wrote: > Hello > > I tried to connect to the firebird server on my computer with the following > instructions: > > PUBLIC SUB Button1_Click() > >  DIM $hConn AS NEW Connection > >  WITH $hConn >    .Type = "firebird" >  

[Gambas-user] Conect to Firebird

2009-05-15 Thread cristian abarzua
Hello I tried to connect to the firebird server on my computer with the following instructions: PUBLIC SUB Button1_Click() DIM $hConn AS NEW Connection WITH $hConn .Type = "firebird" .Host = "localhost" .Login = "SYSDBA" .Password = "x" .Name = "employee.fdb" END W

[Gambas-user] A web page for Gambas Applications (Hugo)

2009-05-15 Thread h...@artica.ad
Dear Benoit I'm the owner of an Industrial Laundry / Textile Rental company with 2 centres in different countries. I am using and developing an application in Gambas to control all our business process, that I began 4 months ago. It works via internet with a remote MySQL database. NAME: datagest

Re: [Gambas-user] Using Driver for Firebird

2009-05-15 Thread cristian abarzua
Benoit Thanks for your reply, it was what I was looking for 2009/5/15 Benoît Minisini > > Hello. > > > > Does anyone know how to connect to Firebird using the driver that comes > > with Gambas?. > > > > Thank you > > Logically, MyConnection.Type = "firebird" should work. > > Regards, > > -- > Be

Re: [Gambas-user] configure and gb.qte

2009-05-15 Thread Rolf-Werner Eilert
Benoît Minisini schrieb: >>> I just downloaded the 2.13 release. Trying to compile it, I ran into >>> this old error of gb.qte. Here is the rest of the ./configure messages >>> where it eventually stops: >>> >>> checking if g++ static flag -static works... yes >>> checking if g++ supports -c -o fil

Re: [Gambas-user] configure and gb.qte

2009-05-15 Thread Rolf-Werner Eilert
Benoît Minisini schrieb: >> I just downloaded the 2.13 release. Trying to compile it, I ran into >> this old error of gb.qte. Here is the rest of the ./configure messages >> where it eventually stops: >> >> checking if g++ static flag -static works... yes >> checking if g++ supports -c -o file.o...

[Gambas-user] Signal 11 with some ByRef conditions

2009-05-15 Thread Jussi Lahtinen
Hi! Call this function; Public Function Test(a1 As Object, ByRef a2 As Long, a3 As Long, a4 As Long, a5 As Boolean, a6 As Boolean, a7 As Long, a8 As Long, a9 As Boolean, Optional ByRef a10 As Long, Optional ByRef a11 As Long, Optional ByRef a12 As Long, Optional ByRef a13 As Long, Optional ByRef

Re: [Gambas-user] A web page for Gambas applications

2009-05-15 Thread Ron
Benoît Minisini wrote: >> Benoît Minisini wrote: >> Hi Benoit, Can i join several screenshots of my applications ? Is there any limits on the size of any applications ? François. (France1159, old : GarulfoUnix) >>> Just one screenshot. If the user wa

Re: [Gambas-user] How to view GAMBAS BASIC code of a GUI, when I write no code

2009-05-15 Thread KhurramM
Thanks for your reply, Sir. Well it seems a milestone for me. Any how, I am a new programmer on GUI side. Is it possible that I learn GUI techniques of Gambas. No where I can find material related to this. I was going thru the book: Johns Beginners Guide, but the commands of ver1 dont work in g

Re: [Gambas-user] configure and gb.qte

2009-05-15 Thread Benoît Minisini
> 2009/5/15 Rolf-Werner Eilert > > > I just downloaded the 2.13 release. Trying to compile it, I ran into > > this old error of gb.qte. Here is the rest of the ./configure messages > > where it eventually stops: > > > > checking if g++ static flag -static works... yes > > checking if g++ supports

Re: [Gambas-user] configure and gb.qte

2009-05-15 Thread Benoît Minisini
> > I just downloaded the 2.13 release. Trying to compile it, I ran into > > this old error of gb.qte. Here is the rest of the ./configure messages > > where it eventually stops: > > > > checking if g++ static flag -static works... yes > > checking if g++ supports -c -o file.o... yes > > checking w

Re: [Gambas-user] Using Driver for Firebird

2009-05-15 Thread Benoît Minisini
> Hello. > > Does anyone know how to connect to Firebird using the driver that comes > with Gambas?. > > Thank you Logically, MyConnection.Type = "firebird" should work. Regards, -- Benoît -- Crystal Reports - New Free

Re: [Gambas-user] configure and gb.qte

2009-05-15 Thread Benoît Minisini
> I just downloaded the 2.13 release. Trying to compile it, I ran into > this old error of gb.qte. Here is the rest of the ./configure messages > where it eventually stops: > > checking if g++ static flag -static works... yes > checking if g++ supports -c -o file.o... yes > checking whether the g++

Re: [Gambas-user] configure and gb.qte

2009-05-15 Thread José Luis Redrejo
2009/5/15 Rolf-Werner Eilert > I just downloaded the 2.13 release. Trying to compile it, I ran into > this old error of gb.qte. Here is the rest of the ./configure messages > where it eventually stops: > > checking if g++ static flag -static works... yes > checking if g++ supports -c -o file.o...

[Gambas-user] configure and gb.qte

2009-05-15 Thread Rolf-Werner Eilert
I just downloaded the 2.13 release. Trying to compile it, I ran into this old error of gb.qte. Here is the rest of the ./configure messages where it eventually stops: checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/u

Re: [Gambas-user] Using Driver for Firebird

2009-05-15 Thread Ron_1st
On Friday 15 May 2009, cristian abarzua wrote: > You know where I could find information on how to do? > > Thanks. > > 2009/5/14 Sergio A. Hernandez > > > Use the generic driver ODBC to interact with Firebird or any other > > Database that supports this standard like MS SQL Server or Firebird i