[Gambas-user] Using Open in Gambas 3

2010-09-05 Thread craf
I use the following code to read from a text file in Gambas 2:

 Dim hFile As File  
 Dim line As String
  
 Open "text" For Read As #hFile
  
 While Not Eof(hFile)
Line Input #hfile, line
Print line
  Wend
 
close #hFile


In Gambas 3 can not be used and must be assigned to hfile:

Dim hFile As File  
Dim line As String
  
hFile = Open "text" For Read
  
While Not Eof(hFile)
Line Input #hfile, line
Print linea
  Wend

close #hFile

It is a new approach?

Regards.

Cristian Abarzúa.


--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
Gambas 3: Revisión : 3182
OS  : Ubuntu 9.10
Desktop : Gnome 2.28

[IDE]

*Execute button does not appear well defined.

PICTURE:Execute_button.png

[GB.FORM]

*Inputbox control overflows when entering a string too long in parameter
Prompt as String.

PICTURE: inputbox.png

*Balloon Control is distorted sometimes.

PICTURE:ballon.png





Regards.

Cristian Abarzúa F.

<><><>--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Using Open in Gambas 3

2010-09-06 Thread craf
OK, thank you.

Cristian Abarzua F.

>-Mensaje original-
>De: Fabien Bodard 
>Reply-to: mailing list for gambas users
>
>Para: mailing list for gambas users 
>Asunto: Re: [Gambas-user] Using Open in Gambas 3
>Fecha: Mon, 6 Sep 2010 17:18:51 +0200

>my english is bad ... i want to say benoit have change the syntax in gb2

>2010/9/6 charlesg :
>
>
> Fabien Bodard-4 wrote:
>>
>> this is new since gb2
>>
>
> Not sure about that. The following works even back to 2.13
>
>
>  DIM j AS Integer = 0
>  INC Application.busy
>  hFileOut = OPEN "/home/charles/rba/rba.csv" FOR CREATE
>
>  sql = "select * from stmaster"
>  res = mdFile.$hConnStock.Exec(sql)
>  FOR EACH res
>IF j > 100 AND j < 120 THEN
>  sellPriceExVat = (Round(res!st_sellprice1 / 1.175 * 100, 0)) / 100
>  IF res!st_datelastsale > CDate("01/01/2000") THEN
>dDate = Format(res!st_datelastsale, "dd/mm/")
>  ELSE
>dDate = ""
>  ENDIF
>  sLine = Chr(34) & res!st_code & Chr(34) & "," & Chr(34) & res!st_desc
> & Chr(34) & "," & Chr(34) & res!st_barcode & Chr(34) & "," & Chr(34) & "ZZ"
> & Chr(34) & "," & "999" & "," & "0" & "," & Chr(34) & "S" & Chr(34) & "," &
> Chr(34) & "Y" & Chr(34) & "," & Chr(34) & res!st_unit & Chr(34) & "," & "1"
> & "," & Chr(34) & "ALDRIDGE" & Chr(34) & "," & Chr(34) & dDate & Chr(34) &
> "," & res!st_minimum & "," & Chr(34) & "" & Chr(34) & "," & "1" & "," &
> "0.95" & "," & "0.95" & "," & sellPriceExVat & "," & res!st_sellprice1
>  PRINT #hFileOut, sLine
>ENDIF
>j += 1
>  NEXT
>  #hFileOut.Close
>  DEC Application.Busy
>
>
> rgds
>
> --
> View this message in context: 
> http://old.nabble.com/Using-Open-in-Gambas-3-tp29630809p29632831.html
> Sent from the gambas-user mailing list archive at Nabble.com.
>
>
> --
> This SF.net Dev2Dev email is sponsored by:
>
> Show off your parallel programming skills.
> Enter the Intel(R) Threading Challenge 2010.
> http://p.sf.net/sfu/intel-thread-sfd
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>

>--
>This SF.net Dev2Dev email is sponsored by:

>Show off your parallel programming skills.
>Enter the Intel(R) Threading Challenge 2010.
>http://p.sf.net/sfu/intel-thread-sfd
>___
>Gambas-user mailing list
>Gambas-user@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/gambas-user




--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
I do not use modified themes. The one I use is Human Clearlooks.
This is one of those that come by default in Ubuntu 9.10.

Regards.

Cristian Abarzua F

>-Mensaje original-
>De: Fabien Bodard 
>Reply-to: mailing list for gambas users
>
>Para: mailing list for gambas users 
>Asunto: Re: [Gambas-user] Bugs - Gambas3
>Fecha: Mon, 6 Sep 2010 17:26:19 +0200

>2010/9/6 Fabien Bodard :
> for the ide button ... can you say me the gnome theme you
>are currently use ?
>for me it work well with the standart theme..

>
> 2010/9/6 craf :
>> Gambas 3: Revisión : 3182
>> OS  : Ubuntu 9.10
>> Desktop : Gnome 2.28
>>
>> [IDE]
>>
>> *Execute button does not appear well defined.
>>
>> PICTURE:Execute_button.png
>>
>> [GB.FORM]
>>
>> *Inputbox control overflows when entering a string too long in parameter
>> Prompt as String.
>>
>> PICTURE: inputbox.png
>>
>> *Balloon Control is distorted sometimes.
>>
>> PICTURE:ballon.png
>>
>>
>>
>>
>>
>> Regards.
>>
>> Cristian Abarzúa F.
>>
>>
>> --
>> This SF.net Dev2Dev email is sponsored by:
>>
>> Show off your parallel programming skills.
>> Enter the Intel(R) Threading Challenge 2010.
>> http://p.sf.net/sfu/intel-thread-sfd
>> ___
>> Gambas-user mailing list
>> Gambas-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gambas-user
>>
>>
>

--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user




--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Bugs - Gambas3
Fecha: Mon, 6 Sep 2010 19:45:14 +0200

> Gambas 3: Revisión : 3182
> OS  : Ubuntu 9.10
> Desktop : Gnome 2.28
> 
> [IDE]
> 
> *Execute button does not appear well defined.
> 
> PICTURE:Execute_button.png
> 

>As Fabien, I don't have the problem. I have a Mandriva with the standard gnome 
>icon theme. Which icon theme do you use?

The strange thing is that happens only with the play icon and pause.

Where do the icons load the ide? Of those that come with Gnome? In that 
directory looking for?

Try to modify the icon play.png that is in 
trunk/comp/src/gb.form.stock/stock/16, but not making the changes.

> [GB.FORM]
> 
> *Inputbox control overflows when entering a string too long in parameter
> Prompt as String.
> 
> PICTURE: inputbox.png
> 

>It should be fixed in revision #3183.

> *Balloon Control is distorted sometimes.
> 
> PICTURE:ballon.png
> 

>Which version of qt4 is installed on your system? I had strangeness in balloon 
>display in Mandriva 2010.0, but not with 2010.1 with the last version of qt4 
>installed.

I use Gnome and I have the kdelibs4-dev package to display the projects qt

Regards,

Cristian abarzua F.




--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
>-Mensaje original-
>De: Fabien Bodard 
>Reply-to: mailing list for gambas users
>
>Para: mailing list for gambas users 
>Asunto: Re: [Gambas-user] Bugs - Gambas3
>Fecha: Mon, 6 Sep 2010 20:24:36 +0200

>well, try the last commit please for icons

The problem is not Gambas 3, but the icons that come with the theme 
Human-Clearlooks (Icons Humanity).

>Le 6 septembre 2010 20:12, Benoît Minisini
 a écrit :
>> -Mensaje original-
>> De: Benoît Minisini 
>> Reply-to: mailing list for gambas users
>> 
>> Para: mailing list for gambas users 
>> Asunto: Re: [Gambas-user] Bugs - Gambas3
>> Fecha: Mon, 6 Sep 2010 19:45:14 +0200
>>
>> > Gambas 3: Revisión : 3182
>> > OS  : Ubuntu 9.10
>> > Desktop : Gnome 2.28
>> >
>> > [IDE]
>> >
>> > *Execute button does not appear well defined.
>> >
>> > PICTURE:Execute_button.png
>> >
>> >As Fabien, I don't have the problem. I have a Mandriva with the standard
>> >gnome icon theme. Which icon theme do you use?
>>
>> The strange thing is that happens only with the play icon and pause.
>>
>> Where do the icons load the ide? Of those that come with Gnome? In that
>> directory looking for?
>
> The directory of the icon theme you are using.
>
>>
>> Try to modify the icon play.png that is in
>> trunk/comp/src/gb.form.stock/stock/16, but not making the changes.
>>
>
> OK, but which icon theme do you use?
>
>> > [GB.FORM]
>> >
>> > *Inputbox control overflows when entering a string too long in parameter
>> > Prompt as String.
>> >
>> > PICTURE: inputbox.png
>> >
>> >It should be fixed in revision #3183.
>> >
>> > *Balloon Control is distorted sometimes.
>> >
>> > PICTURE:ballon.png
>> >
>> >Which version of qt4 is installed on your system? I had strangeness in
>> >balloon display in Mandriva 2010.0, but not with 2010.1 with the last
>> >version of qt4 installed.
>>
>> I use Gnome and I have the kdelibs4-dev package to display the projects qt
>
> OK, but which version of qt4 do you use? Look at the name of the qt4 package,
> it should be in it.
>
> Regards,
>
> --
> Benoît Minisini
>
> --
> This SF.net Dev2Dev email is sponsored by:
>
> Show off your parallel programming skills.
> Enter the Intel(R) Threading Challenge 2010.
> http://p.sf.net/sfu/intel-thread-sfd
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>

--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user




--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Bugs - Gambas3
Fecha: Mon, 6 Sep 2010 20:12:47 +0200

> -Mensaje original-
> De: Benoît Minisini 
> Reply-to: mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] Bugs - Gambas3
> Fecha: Mon, 6 Sep 2010 19:45:14 +0200
> 
> > Gambas 3: Revisión : 3182
> > OS  : Ubuntu 9.10
> > Desktop : Gnome 2.28
> > 
> > [IDE]
> > 
> > *Execute button does not appear well defined.
> > 
> > PICTURE:Execute_button.png
> >
> >As Fabien, I don't have the problem. I have a Mandriva with the standard
> >gnome icon theme. Which icon theme do you use?
> 
> The strange thing is that happens only with the play icon and pause.
> 
> Where do the icons load the ide? Of those that come with Gnome? In that
> directory looking for?

>The directory of the icon theme you are using.

> 
> Try to modify the icon play.png that is in
> trunk/comp/src/gb.form.stock/stock/16, but not making the changes.
> 

>OK, but which icon theme do you use?

> > [GB.FORM]
> > 
> > *Inputbox control overflows when entering a string too long in parameter
> > Prompt as String.
> > 
> > PICTURE: inputbox.png
> >
> >It should be fixed in revision #3183.
> >
> > *Balloon Control is distorted sometimes.
> > 
> > PICTURE:ballon.png
> >
> >Which version of qt4 is installed on your system? I had strangeness in
> >balloon display in Mandriva 2010.0, but not with 2010.1 with the last
> >version of qt4 installed.
> 
> I use Gnome and I have the kdelibs4-dev package to display the projects qt

>OK, but which version of qt4 do you use? Look at the name of the qt4 package, 
>it should be in it.

Sorry, had not understood.

libqt3 3.3.8



Regards,





--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
>-Mensaje original-
>De: Benoît Minisini 
>Reply-to: mailing list for gambas users
>
>Para: mailing list for gambas users 
>Asunto: Re: [Gambas-user] Bugs - Gambas3
>Fecha: Mon, 6 Sep 2010 21:25:04 +0200

> > I use Gnome and I have the kdelibs4-dev package to display the projects
> > qt
> >
> >OK, but which version of qt4 do you use? Look at the name of the qt4
> >package, it should be in it.
> 
> Sorry, had not understood.
> 
> libqt3 3.3.8
> 

>You didn't understand yet. :-) Gambas 3 does not use libqt3, but libqt4.

ja,ja. Today I'm on another planet, sorry.

libqt4 4.5.3

Regards.

Cristian Abarzua



--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Revision Number of Repo Subversion Gambas 3

2010-09-06 Thread craf
Hi.

Is there any way to determine the revision number that takes the
subversion repository in Gambas 3.?
I want to make a small script to see daily changes and download the
latest revision date.

Regards

Cristian Abarzua F.


--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Bugs - Gambas3

2010-09-06 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Bugs - Gambas3
Fecha: Mon, 6 Sep 2010 22:14:36 +0200

> >-Mensaje original-
> >De: Fabien Bodard 
> >Reply-to: mailing list for gambas users
> >
> >Para: mailing list for gambas users 
> >Asunto: Re: [Gambas-user] Bugs - Gambas3
> >Fecha: Mon, 6 Sep 2010 20:24:36 +0200
> >
> >well, try the last commit please for icons
> 
> The problem is not Gambas 3, but the icons that come with the theme
> Human-Clearlooks (Icons Humanity).
> 

>I just tried with Ubuntu 10.04 64 bits, with the default icon theme then the 
>Humanity icon theme, and all IDE icons are perfectly visible.

Perform a clean installation of Ubuntu 9.10 I installed Gambas3 (Rev
3188).
The problem persists. even changing themes.

Regards

Cristian Abarzúa



--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Revision Number of Repo Subversion Gambas 3

2010-09-06 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Revision Number of Repo Subversion Gambas 3
Fecha: Tue, 7 Sep 2010 02:19:52 +0200

> Hi.
> 
> Is there any way to determine the revision number that takes the
> subversion repository in Gambas 3.?
> I want to make a small script to see daily changes and download the
> latest revision date.
> 
> Regards
> 
> Cristian Abarzua F.
> 

>The best way is to subscribe to the gambas-devel-svn mailing-list, and you 
>will receive a mail for each new revision.

Ok. Thank you.

Regards

Cristian Abarzua F


--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Bugs - Gambas3

2010-09-07 Thread craf
>-Mensaje original-
>De: Fabien Bodard 
>Reply-to: mailing list for gambas users
>
>Para: mailing list for gambas users 
>Asunto: Re: [Gambas-user] Bugs - Gambas3
>Fecha: Tue, 7 Sep 2010 09:52:04 +0200


>ok have you an icon named : media-playback-start (.png or .svg) ?

Yes, is in /usr/share/icons/Humanity/actions/16/, Size 22 is not.

Attached image.

Regards.



>in /usr/share/icons/Human(or Humanity)/22/

>2010/9/7 craf :
> -Mensaje original-
> De: Benoît Minisini 
> Reply-to: mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] Bugs - Gambas3
> Fecha: Mon, 6 Sep 2010 22:14:36 +0200
>
>> >-Mensaje original-
>> >De: Fabien Bodard 
>> >Reply-to: mailing list for gambas users
>> >
>> >Para: mailing list for gambas users 
>> >Asunto: Re: [Gambas-user] Bugs - Gambas3
>> >Fecha: Mon, 6 Sep 2010 20:24:36 +0200
>> >
>> >well, try the last commit please for icons
>>
>> The problem is not Gambas 3, but the icons that come with the theme
>> Human-Clearlooks (Icons Humanity).
>>
>
>>I just tried with Ubuntu 10.04 64 bits, with the default icon theme then the
>>Humanity icon theme, and all IDE icons are perfectly visible.
>
> Perform a clean installation of Ubuntu 9.10 I installed Gambas3 (Rev
> 3188).
> The problem persists. even changing themes.
>
> Regards
>
> Cristian Abarzúa
>
>
>
> --
> This SF.net Dev2Dev email is sponsored by:
>
> Show off your parallel programming skills.
> Enter the Intel(R) Threading Challenge 2010.
> http://p.sf.net/sfu/intel-thread-sfd
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>






<>--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] TabStrip Control

2010-09-08 Thread craf
I'm trying Gambas3 and would like to make a query:

In GTK+, the control GTK_NOTEBOOK, displays the text of the tabs
horizontally, the orientation set to the left or right. (See image
adjunt).

It is thus possible to configure Gambas3?

Regards.

Cristian Abarzúa F


<>--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Rev. 3199 - Gambas 3

2010-09-08 Thread craf
OS: Ubuntu 9.10 - 32bits
Gnome : 2.28
Monitor : res. 1360x768

[GB.FORM]

*BUG: The icons in the Console tab, not shown completely.
   See.Image.png

Regards.

Cristian Abarzúa F.

<>--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Gambas compile with option -static

2010-09-08 Thread craf
Hi.

There is the possibility to compile the executable gbx2 with option
-static.

Regards.

Cristian Abarzúa F


--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] data book archive .dba from gambas y palms

2010-09-08 Thread craf
-Mensaje original-
De: Tomas Rodriguez 
Reply-to: mailing list for gambas users

Para: gambas-user@lists.sourceforge.net
Asunto: [Gambas-user] data book archive .dba from gambas y palms
Fecha: Wed, 8 Sep 2010 17:38:26 -0400

>Hi eeryone
>I need to developer an application for my Palm Zire21 PDA using gambas with 
>data book (d.ba) as data base , but I don't know if is possible to do that.
>this application is the same like one application for windows.
>someone can help me if is possible to developer an appliaction for palm and 
>install it in the Palm Zire21 PDA


>thanks
>tomas 

Gambas only creates executables for Linux computers.

Regards.

Cristian Abarzua



>--
>This SF.net Dev2Dev email is sponsored by:

>Show off your parallel programming skills.
>Enter the Intel(R) Threading Challenge 2010.
>http://p.sf.net/sfu/intel-thread-sfd
>___
>Gambas-user mailing list
>Gambas-user@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/gambas-user




--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] data book archive .dba from gambas y palms

2010-09-08 Thread craf
-Mensaje original-
De: craf 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] data book archive .dba from gambas y palms
Fecha: Wed, 08 Sep 2010 18:27:18 -0400

-Mensaje original-
De: Tomas Rodriguez 
Reply-to: mailing list for gambas users

Para: gambas-user@lists.sourceforge.net
Asunto: [Gambas-user] data book archive .dba from gambas y palms
Fecha: Wed, 8 Sep 2010 17:38:26 -0400

>Hi eeryone
>I need to developer an application for my Palm Zire21 PDA using gambas with 
>data book (d.ba) as data base , but I don't know if is possible to do that.
>this application is the same like one application for windows.
>someone can help me if is possible to developer an appliaction for palm and 
>install it in the Palm Zire21 PDA


>thanks
>tomas 

>Gambas only creates executables for Linux computers.

>Regards.

>Cristian Abarzua

Palm was bought by Access. From here you can download the kit to program in 
Linux

http://www.accessdevnet.com/index.php/ACCESS-Tools/View-category.html

Here is a page where they create a small application.This in Spanish

http://molavec.blogspot.com/2009/07/programacion-en-palm-os.html

Regards.

Cristian Abarzua F




>--
>This SF.net Dev2Dev email is sponsored by:

>Show off your parallel programming skills.
>Enter the Intel(R) Threading Challenge 2010.
>http://p.sf.net/sfu/intel-thread-sfd
>___
>Gambas-user mailing list
>Gambas-user@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/gambas-user




--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user




--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] TabStrip Control

2010-09-08 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] TabStrip Control
Fecha: Thu, 9 Sep 2010 03:04:28 +0200

> I'm trying Gambas3 and would like to make a query:
> 
> In GTK+, the control GTK_NOTEBOOK, displays the text of the tabs
> horizontally, the orientation set to the left or right. (See image
> adjunt).
> 
> It is thus possible to configure Gambas3?
> 
> Regards.
> 
> Cristian Abarzúa F

>Yes: use the TabStrip.Orientation property.

>Regards,

Fantastic, thank.

Regards.



--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-09 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3
Fecha: Thu, 9 Sep 2010 03:26:50 +0200

> OS: Ubuntu 9.10 - 32bits
> Gnome : 2.28
> Monitor : res. 1360x768
> 
> [GB.FORM]
> 
> *BUG: The icons in the Console tab, not shown completely.
>See.Image.png
> 
> Regards.
> 
> Cristian Abarzúa F.

>Can you run the IDE with GB_STOCK_DEBUG=1 and send the output messages?

>$ cd /path/to/ide/source
>$ GB_STOCK_DEBUG=1 gbx3
>...

>Regards,

Sorry, where?

I try in /usr/local/bin/GB_STOCK_DEBUG gbx3 and doesn't work.

/usr/local/bin/GB_STOCK_DEBUG gambas3.gambas work's,but doesn't create a
text file

Regards.

Cristian Abarzua F.


--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-09 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3
Fecha: Thu, 9 Sep 2010 17:34:03 +0200

> -Mensaje original-
> De: Benoît Minisini 
> Reply-to: mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3
> Fecha: Thu, 9 Sep 2010 03:26:50 +0200
> 
> > OS: Ubuntu 9.10 - 32bits
> > Gnome : 2.28
> > Monitor : res. 1360x768
> > 
> > [GB.FORM]
> > 
> > *BUG: The icons in the Console tab, not shown completely.
> > 
> >See.Image.png
> > 
> > Regards.
> > 
> > Cristian Abarzúa F.
> >
> >Can you run the IDE with GB_STOCK_DEBUG=1 and send the output messages?
> >
> >$ cd /path/to/ide/source
> >$ GB_STOCK_DEBUG=1 gbx3
> >...
> >
> >Regards,
> 
> Sorry, where?
> 
> I try in /usr/local/bin/GB_STOCK_DEBUG gbx3 and doesn't work.
> 
> /usr/local/bin/GB_STOCK_DEBUG gambas3.gambas work's,but doesn't create a
> text file
> 
> Regards.
> 
> Cristian Abarzua F.
> 

>I don't understand anything: you say in the subject of your mail that you are 
>talking about the last revision of Gambas 3, and then in your mail you say 
>that you are using Gambas 2.28, whereas Gambas 2.28 does not exist (the last 
>version of Gambas 2 is 2.21).

>So please check that you give accurate informations!

>What I gave you in the previous mail is a list of shell command to enter in a 
>terminal window. But they are useless if you don't use Gambas 3.

>Regards,

If you say I placed Gambas 2.28, so be it ;=)

Regards.

Cristian Abarzua F.



--
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-09 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3
Fecha: Fri, 10 Sep 2010 00:51:54 +0200

> 
> If you say I placed Gambas 2.28, so be it ;=)
> 
> Regards.
> 
> Cristian Abarzua F.
> 

>OOPS!!! I'm confused and sorry... Now I read Gambas when it is written Gnome! 
>Strange disease... You can give me a forfeit.

>So, if you are using Gambas 3 on Gnome 2.28, with the latest trunk, you should 
>be able to run the shell commands, shouldn't you?


ja,ja,There is nothing to forgive, we all passed. ;=)

What happens is that I see that GB_STOCK_DEBUG variable is very useful
and would like to know how to use it.

I figured you had to run into /usr/local/bin/, it is there where the
file is gbx3, but in doing so tells me file or directory not found.
or is it in the sources?. Example /trunk/main/gbx/, But there just is
source files.

Regards.

Cristian Abarzua



--
Automate Storage Tiering Simply
Optimize IT performance and efficiency through flexible, powerful, 
automated storage tiering capabilities. View this brief to learn how
you can reduce costs and improve performance. 
http://p.sf.net/sfu/dell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Testing component GB.INFO

2010-09-11 Thread craf
[GB.INFO]

Testing in Gambas3 Rev 3206 and Gambas 2.21.
SO: Ubuntu 9.10 i386

* Create proyect GTK.
* Add Control Listview
* Add three controls Button.
* Add Class Class1
* Add two forms.


* Code in Button1:

  Dim x As Byte
  
  For x = 0 To Info.Classes.Count - 1 
   ListView1.Add(x, Info.Classes[x])
  Next

  Result: No Class are displayed in Listview.

*Code in Button 2:
  
  Dim x As Byte 

  For x = 0 To Info.forms.Count - 1 
   ListView1.Add(x, Info.forms[x])
  Next

  Result: No forms are displayed in Listview

**Code in Button 3:
  
  Dim x As Byte 

  For x = 0 To Info.forms.components - 1 
   ListView1.Add(x, Info.components[x])
  Next

  Result: gb,gb.cairo,gb.chart.etc. Good.

Console displays the following output when running the program.

ComponentInfo.ComponentInfo.0: gb.Text
ComponentInfo.ComponentInfo.0: gb.Text
ComponentInfo.ComponentInfo.0: gb.Text
ComponentInfo.ComponentInfo.0: gb.Text



Is this correct?

Regards

Cristian Abarzua F.


--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Testing DEVELOPMENT ENVIRONMENT in Gambas3

2010-09-11 Thread craf
[ DEVELOPMENT ENVIRONMENT]

Testing in Gambas3 Rev 3206
SO: Ubuntu 9.10 i386

* When you save a project with the name of another existing project. Not
indicated by a message that the project already exists as gambas2.

Regards.

Cristian Abarzua F


--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Gambas compile with option -static

2010-09-12 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Gambas compile with option -static
Fecha: Sun, 12 Sep 2010 11:57:03 +0200

> Hi.
> 
> There is the possibility to compile the executable gbx2 with option
> -static.
> 
> Regards.
> 
> Cristian Abarzúa F
> 

>Are you sure? Do you have more details?

Sorry,It was not a conclusion.It was a question. I miss the caracter ?

Regards

Cristian Abarzua F



--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Testing component GB.INFO

2010-09-12 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Testing component GB.INFO
Fecha: Sun, 12 Sep 2010 11:33:01 +0200

> [GB.INFO]
> 
> Testing in Gambas3 Rev 3206 and Gambas 2.21.
> SO: Ubuntu 9.10 i386
> 
> * Create proyect GTK.
> * Add Control Listview
> * Add three controls Button.
> * Add Class Class1
> * Add two forms.
> 
> 
> * Code in Button1:
> 
>   Dim x As Byte
> 
>   For x = 0 To Info.Classes.Count - 1
>ListView1.Add(x, Info.Classes[x])
>   Next
> 
>   Result: No Class are displayed in Listview.
> 
> *Code in Button 2:
> 
>   Dim x As Byte
> 
>   For x = 0 To Info.forms.Count - 1
>ListView1.Add(x, Info.forms[x])
>   Next
> 
>   Result: No forms are displayed in Listview
> 
> **Code in Button 3:
> 
>   Dim x As Byte
> 
>   For x = 0 To Info.forms.components - 1
>ListView1.Add(x, Info.components[x])
>   Next
> 
>   Result: gb,gb.cairo,gb.chart.etc. Good.
> 
> Console displays the following output when running the program.
> 
> ComponentInfo.ComponentInfo.0: gb.Text
> ComponentInfo.ComponentInfo.0: gb.Text
> ComponentInfo.ComponentInfo.0: gb.Text
> ComponentInfo.ComponentInfo.0: gb.Text
> 
> 
> 
> Is this correct?
> 
> Regards
> 
> Cristian Abarzua F.
> 

>Thanks for the report. In (3) the message is just a warning for a deprecated 
>constant. 'gb.Text' must be replaced by 'gb.IgnoreCase'.

>Anyway it's far better if you can provide a Gambas project instead of 
>describing the code, because then it's faster for me, and I am sure that I 
>reproduce exactly the same code in the same context than you!

>Regards,

Ok.Here goes.


Regards

Cristian Abarzua F


compInfo.tar.gz
Description: application/compressed-tar
--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-15 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3
Fecha: Mon, 13 Sep 2010 20:58:27 +0200

> 
> Ok. Now I understand.
> 
> With regard to the installer, I send you some screens to see if you
> like. This installer would be separated from Gambas3, because the code
> is heavily commented, and I have delayed a lot in trying to understand.
> I'm still stuck trying to run the executable with another version of
> glibc, but nothing.
> 
> Regards.
> 
> Cristian Abarzua

>Hi Cristian,

>I like the name, "canner". But it will be better if you make a command-line 
>tool to can gambas projects, and do the GUI on top on this command-line tool.

>Regards,

Glad you liked.I want to clarify that the installer trying to do, is only a 
supplement which comes with Gambas.
Since the Gambas is much more complete.

I sincerely think that if we can develop an independent installer
distribution, would be the final step to consolidate Gambas programming
as the default IDE for Linux.

With respect to develop console, what is the idea you have in mind?.

PS: If anyone is interested in participating, so be it.

Regards.

Cristian Abarzúa F.





--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Rev. 3199 - Gambas 3

2010-09-15 Thread craf
Hi Fabien.

My question was to do it only in console,Sorry if anything was
understood.

Regards.

Cristian Abarzúa F

>-Mensaje original-
>De: Fabien Bodard 
>Reply-to: mailing list for gambas users
>
>Para: mailing list for gambas users 
>Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3
>Fecha: Wed, 15 Sep 2010 23:16:14 +0200

>in fact benoit talk about separate your program in too part

>one program in text only(console), that manage all the function in
>text mode. And the a frontend that give a graphical interface.

>like many programs on linux.

>to help you to understand how to make a console program take a look at
:
> -Mensaje original-
> De: Benoît Minisini 
> Reply-to: mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] Rev. 3199 - Gambas 3
> Fecha: Mon, 13 Sep 2010 20:58:27 +0200
>
>>
>> Ok. Now I understand.
>>
>> With regard to the installer, I send you some screens to see if you
>> like. This installer would be separated from Gambas3, because the code
>> is heavily commented, and I have delayed a lot in trying to understand.
>> I'm still stuck trying to run the executable with another version of
>> glibc, but nothing.
>>
>> Regards.
>>
>> Cristian Abarzua
>
>>Hi Cristian,
>
>>I like the name, "canner". But it will be better if you make a command-line
>>tool to can gambas projects, and do the GUI on top on this command-line tool.
>
>>Regards,
>
> Glad you liked.I want to clarify that the installer trying to do, is only a 
> supplement which comes with Gambas.
> Since the Gambas is much more complete.
>
> I sincerely think that if we can develop an independent installer
> distribution, would be the final step to consolidate Gambas programming
> as the default IDE for Linux.
>
> With respect to develop console, what is the idea you have in mind?.
>
> PS: If anyone is interested in participating, so be it.
>
> Regards.
>
> Cristian Abarzúa F.
>
>
>
>
>
> --
> Start uncovering the many advantages of virtual appliances
> and start using them to simplify application deployment and
> accelerate your shift to cloud computing.
> http://p.sf.net/sfu/novell-sfdev2dev
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>







--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Gambas compile with option -static

2010-09-15 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Gambas compile with option -static
Fecha: Wed, 15 Sep 2010 12:35:24 +0200

> -Mensaje original-
> De: Benoît Minisini 
> Reply-to: mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] Gambas compile with option -static
> Fecha: Sun, 12 Sep 2010 11:57:03 +0200
> 
> > Hi.
> > 
> > There is the possibility to compile the executable gbx2 with option
> > -static.
> > 
> > Regards.
> > 
> > Cristian Abarzúa F
> >
> >Are you sure? Do you have more details?
> 
> Sorry,It was not a conclusion.It was a question. I miss the caracter ?
> 
> Regards
> 
> Cristian Abarzua F
> 

>It is disabled in the configuration file (in acinclude.m4 line #140). 

>Regards,

Thanks for the tip, Benoit

I really think the problem has nothing to do with the interpreter, if
not rather with GTK.

I updated my Ubuntu computer to 10.4 to see if the problem was with
version 9.10

I think an installer from a console project, created with the version
2.21 of Gambas.

The move to a version 9.10 and runs perfectly in virtualbox.

I try with versions 9.04, 8.10 and works perfect.The drama begins when I
create a project with gtk.

By running the installer in Ubuntu 9.10, throws errors with respect to
shared libraries gdk11 and others, which are called by the
LD_LIBRARY_PATH path to the file .sh

The delete and it works perfectly.

When I test the same installer in 9.04 or 8.10, gives me a problem with
libcairo library, you do not find GLIBC.

To find out for sure, I think a C program using the GTK libraries and
run on Ubuntu and runs perfectly in 9.10->9.04->8.10 and even 8.04.

Then compile the same program in Ubuntu 8.04 and I run it in reverse
order.8.04->8.10->9.04->9.10.and runs perfectly. Glibc does not throw
errors.

It seems that when setting a part, then disrupts the other.

I have not wanted to try with QT yet, until you can fix this.

It could be that the component gb.gtk there deprecated functions?,and so
the program runs only in some versions,It's just an idea.

no longer know what to think. Any ideas?

Regards

Cristian Abarzua


--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Gambas compile with option -static

2010-09-15 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Gambas compile with option -static
Fecha: Thu, 16 Sep 2010 02:04:31 +0200

> -Mensaje original-
> De: Benoît Minisini 
> Reply-to: mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] Gambas compile with option -static
> Fecha: Wed, 15 Sep 2010 12:35:24 +0200
> 
> > -Mensaje original-
> > De: Benoît Minisini 
> > Reply-to: mailing list for gambas users
> > 
> > Para: mailing list for gambas users 
> > Asunto: Re: [Gambas-user] Gambas compile with option -static
> > Fecha: Sun, 12 Sep 2010 11:57:03 +0200
> > 
> > > Hi.
> > > 
> > > There is the possibility to compile the executable gbx2 with option
> > > -static.
> > > 
> > > Regards.
> > > 
> > > Cristian Abarzúa F
> > >
> > >Are you sure? Do you have more details?
> > 
> > Sorry,It was not a conclusion.It was a question. I miss the caracter ?
> > 
> > Regards
> > 
> > Cristian Abarzua F
> >
> >It is disabled in the configuration file (in acinclude.m4 line #140).
> >
> >Regards,
> 
> Thanks for the tip, Benoit
> 
> I really think the problem has nothing to do with the interpreter, if
> not rather with GTK.
> 
> I updated my Ubuntu computer to 10.4 to see if the problem was with
> version 9.10
> 
> I think an installer from a console project, created with the version
> 2.21 of Gambas.
> 
> The move to a version 9.10 and runs perfectly in virtualbox.
> 
> I try with versions 9.04, 8.10 and works perfect.The drama begins when I
> create a project with gtk.
> 
> By running the installer in Ubuntu 9.10, throws errors with respect to
> shared libraries gdk11 and others, which are called by the
> LD_LIBRARY_PATH path to the file .sh
> 
> The delete and it works perfectly.
> 
> When I test the same installer in 9.04 or 8.10, gives me a problem with
> libcairo library, you do not find GLIBC.
> 
> To find out for sure, I think a C program using the GTK libraries and
> run on Ubuntu and runs perfectly in 9.10->9.04->8.10 and even 8.04.
> 
> Then compile the same program in Ubuntu 8.04 and I run it in reverse
> order.8.04->8.10->9.04->9.10.and runs perfectly. Glibc does not throw
> errors.
> 
> It seems that when setting a part, then disrupts the other.
> 
> I have not wanted to try with QT yet, until you can fix this.
> 
> It could be that the component gb.gtk there deprecated functions?,and so
> the program runs only in some versions,It's just an idea.
> 
> no longer know what to think. Any ideas?
> 
> Regards
> 
> Cristian Abarzua
> 

>Please can you try to polish your english and provide information as much as 
>possible, because some sentences are not 100% clear to me, and so it's 
>knowledge about.

>Anyway, did you look at Google Earth installation on Linux? This is a "caned" 
>Qt4-based program, so maybe you cann look at how they do?

>Regards,

Sorry for my English. I try to write in paragraphs for you to understand me.
Obviously, I did not succeed ;=).

Yes, I have tested Google Earth installer. Work with the same design concept.

Just install the QT libraries that come with kdelibs4-dev (For Ubuntu).

But this same installer has problems with some versions of Ubuntu.Version 5 has 
problems with StreetView (The cameras do not appear in the right places).
 and it seems that Google is not interested in fixing them.

Well, GTK 1, Me 0

Regards.

Cristian Abarzua





--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Testing Gambas 2.99

2010-09-15 Thread craf
Ubuntu : 10.4
Gambas : 2.99
Gnome  : 2.30.2

[gb.form]

* test ColorButton : When selecting a color, the button does not display
the selected color.

[gb.qt4]

* Test Form  : Fmain.center not positioned in the center of the screen,
the form

Regards

Cristian Abarzua


--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Testing Gambas 2.99

2010-09-15 Thread craf
Hi Dag

The test I do is just to see if other users have the same problem, or
just I have it. The tests always performed in a clean install of ubuntu,
without changing anything.Anyway, thank you very much for the advice.
And if , I do not sleep, I'm a robot mail. ja,ja.

Best Regards

Cristian Abarzúa F.

>-Mensaje original-
>De: Dag Jarle Johansen 
>Reply-to: mailing list for gambas users
>
>Para: mailing list for gambas users 
>Asunto: Re: [Gambas-user] Testing Gambas 2.99
>Fecha: Thu, 16 Sep 2010 00:55:10 -0300

>Hi Cristian,

>do you never sleep - lol 

>Sorry, just a joke, 

>I have experienced that too, but watch up for Ubuntu/Gnome: If you have
>loaded and use a particular skin for Gnome, it may happen that all
>buttons stay transparent for example, no matter what you do - a little
>annoying. If you stay with the origin themes of Ubuntu it does not
>happen. I have the same versions as you except I use Gambas 2.99 rev.
>2... something. And, if you should have seen the bug-report of Ubuntu
>lately - there are massive errors in the GUI, so I would wait a little
>and try again, I do not think this is a Gambas-error mainly. 

>Regards,
>Dag-Jarle



Am Mittwoch, den 15.09.2010, 23:02 -0400 schrieb craf:

> Ubuntu : 10.4
> Gambas : 2.99
> Gnome  : 2.30.2
> 
> [gb.form]
> 
> * test ColorButton : When selecting a color, the button does not display
> the selected color.
> 
> [gb.qt4]
> 
> * Test Form  : Fmain.center not positioned in the center of the screen,
> the form
> 
> Regards
> 
> Cristian Abarzua
> 
> 
> --
> Start uncovering the many advantages of virtual appliances
> and start using them to simplify application deployment and
> accelerate your shift to cloud computing.
> http://p.sf.net/sfu/novell-sfdev2dev
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user


--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user




--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Testing Gambas 2.99

2010-09-15 Thread craf
Hi Dag.

Ok. Thanks for the tip. Then ha,ha indicates laughter ;=). I see you
like the Spanish.

Regards.

Cristian Abarzua F.

>-Mensaje original-
>De: Dag Jarle Johansen 
>Reply-to: mailing list for gambas users
>
>Para: mailing list for gambas users 
>Asunto: Re: [Gambas-user] Testing Gambas 2.99
>Fecha: Thu, 16 Sep 2010 01:24:30 -0300

>Hola Cristian, 

>as I can read out of your ja ja you are speaking Spanish? In rest of
>Europe, where it is possible to pronounce H, you would have said ha ha -
>nevertheless -I am just trying out your stuff - it is only a few lines,
>so I will have it in a moment.

>Saludos,
>Dag-Jarle


Am Donnerstag, den 16.09.2010, 00:15 -0400 schrieb craf:

> Hi Dag
> 
> The test I do is just to see if other users have the same problem, or
> just I have it. The tests always performed in a clean install of ubuntu,
> without changing anything.Anyway, thank you very much for the advice.
> And if , I do not sleep, I'm a robot mail. ja,ja.
> 
> Best Regards
> 
> Cristian Abarzúa F.
> 
> >-Mensaje original-
> >De: Dag Jarle Johansen 
> >Reply-to: mailing list for gambas users
> >
> >Para: mailing list for gambas users 
> >Asunto: Re: [Gambas-user] Testing Gambas 2.99
> >Fecha: Thu, 16 Sep 2010 00:55:10 -0300
> 
> >Hi Cristian,
> 
> >do you never sleep - lol 
> 
> >Sorry, just a joke, 
> 
> >I have experienced that too, but watch up for Ubuntu/Gnome: If you have
> >loaded and use a particular skin for Gnome, it may happen that all
> >buttons stay transparent for example, no matter what you do - a little
> >annoying. If you stay with the origin themes of Ubuntu it does not
> >happen. I have the same versions as you except I use Gambas 2.99 rev.
> >2... something. And, if you should have seen the bug-report of Ubuntu
> >lately - there are massive errors in the GUI, so I would wait a little
> >and try again, I do not think this is a Gambas-error mainly. 
> 
> >Regards,
> >Dag-Jarle
> 
> 
> 
> Am Mittwoch, den 15.09.2010, 23:02 -0400 schrieb craf:
> 
> > Ubuntu : 10.4
> > Gambas : 2.99
> > Gnome  : 2.30.2
> > 
> > [gb.form]
> > 
> > * test ColorButton : When selecting a color, the button does not display
> > the selected color.
> > 
> > [gb.qt4]
> > 
> > * Test Form  : Fmain.center not positioned in the center of the screen,
> > the form
> > 
> > Regards
> > 
> > Cristian Abarzua
> > 
> > 
> > --
> > Start uncovering the many advantages of virtual appliances
> > and start using them to simplify application deployment and
> > accelerate your shift to cloud computing.
> > http://p.sf.net/sfu/novell-sfdev2dev
> > ___
> > Gambas-user mailing list
> > Gambas-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
> 
> 
> --
> Start uncovering the many advantages of virtual appliances
> and start using them to simplify application deployment and
> accelerate your shift to cloud computing.
> http://p.sf.net/sfu/novell-sfdev2dev
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
> 
> 
> 
> 
> --
> Start uncovering the many advantages of virtual appliances
> and start using them to simplify application deployment and
> accelerate your shift to cloud computing.
> http://p.sf.net/sfu/novell-sfdev2dev
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user


--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user




--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Problems installing Gambas3. Rev 3223

2010-09-15 Thread craf
Hi.

Do not know what happened, because I can not compile the 3223 version.

. / Configure shows: WARNING: Unable to find file: libintl.so
 WARNING: Unable to find file: libiconv.so

Attached file output.txt

Regards

Cristian Abarzua F.


output.txt.tar.gz
Description: application/compressed-tar
--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Problems installing Gambas3. Rev 3223 [SOLVED]

2010-09-16 Thread craf
Solved with Rev 3226.

Regards.

Cristian Abarzua F

>-Mensaje original-
>De: craf 
>Reply-to: mailing list for gambas users
>
>Para: Lista Gambas Ingles 
>Asunto: [Gambas-user] Problems installing Gambas3. Rev 3223
>Fecha: Thu, 16 Sep 2010 01:29:06 -0400

>Hi.

>Do not know what happened, because I can not compile the 3223 version.

>. / Configure shows: WARNING: Unable to find file: libintl.so
 WARNING: Unable to find file: libiconv.so

>Attached file output.txt

>Regards

>Cristian Abarzua F.
>--
>Start uncovering the many advantages of virtual appliances
>and start using them to simplify application deployment and
>accelerate your shift to cloud computing.
>http://p.sf.net/sfu/novell-sfdev2dev
_>__ Gambas-user mailing list 
Gambas-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/gambas-user




--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Testing Gambas 2.99

2010-09-16 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Testing Gambas 2.99
Fecha: Fri, 17 Sep 2010 02:12:27 +0200

> Ubuntu : 10.4
> Gambas : 2.99
> Gnome  : 2.30.2
> 
> [gb.form]
> 
> * test ColorButton : When selecting a color, the button does not display
> the selected color.
> 

>It works perfectly there. *Please* provide a little project example to show 
>bugs!

> [gb.qt4]
> 
> * Test Form  : Fmain.center not positioned in the center of the screen,
> the form

>Mmm. The sentence seems to be unfinished... Can you give more details?

Solved by formatting and installing Ubuntu 10.4 without Virtualbox.

Regards,





--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Testing DEVELOPMENT ENVIRONMENT in Gambas3

2010-09-16 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Testing DEVELOPMENT ENVIRONMENT in Gambas3
Fecha: Fri, 17 Sep 2010 04:08:42 +0200

> [ DEVELOPMENT ENVIRONMENT]
> 
> Testing in Gambas3 Rev 3206
> SO: Ubuntu 9.10 i386
> 
> * When you save a project with the name of another existing project. Not
> indicated by a message that the project already exists as gambas2.
> 
> Regards.
> 
> Cristian Abarzua F
> 

>"Saving as" has been reimplemented in revison #3225. Tell me if it is better 
>for you now.

Yes, works perfect!

Regards,





--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Testing Gambas 2.99

2010-09-17 Thread craf
-Mensaje original-
De: craf 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Testing Gambas 2.99
Fecha: Fri, 17 Sep 2010 00:15:37 -0400

-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Testing Gambas 2.99
Fecha: Fri, 17 Sep 2010 02:12:27 +0200

> Ubuntu : 10.4
> Gambas : 2.99
> Gnome  : 2.30.2
> 
> [gb.form]
> 
> * test ColorButton : When selecting a color, the button does not display
> the selected color.
> 

>It works perfectly there. *Please* provide a little project example to show 
>bugs!

> [gb.qt4]
> 
> * Test Form  : Fmain.center not positioned in the center of the screen,
> the form

>Mmm. The sentence seems to be unfinished... Can you give more details?

>Solved by formatting and installing Ubuntu 10.4 without Virtualbox.

I speak too son. The problem persist whith control ColorButton.

Insert a control ColorButton  in a  form.

Run the aplication.

The color of the button appears altered each time I run the application

Attach Pictures.

This only happens with the component gb.gtk, With the component gb.qt, works 
perfectly 


Regards,


Cristian Abarzua

Ubuntu : 10.4
Gambas : 2.99 Rev 3227
Gnome  : 2.30.2
Theme  : Ambiance (original)
>--
>Start uncovering the many advantages of virtual appliances
>and start using them to simplify application deployment and
>accelerate your shift to cloud computing.
>___
>Gambas-user mailing list
>Gambas-user@lists.sourceforge.net>
>https://lists.sourceforge.net/lists/listinfo/gambas-user


<><>--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Test Gambas 2.99 Rev 3227

2010-09-17 Thread craf
OS: Ubuntu 10.4
Gnome : 2.30.2

Fmain.border = 0 -->Work, show form without borders
Fmain.border = 1 --> Nothing
Fmain.border = 2 --> Nothing

Regards.

Cristian Abarzua F


--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Test Gambas 2.99 Rev 3227

2010-09-17 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Test Gambas 2.99 Rev 3227
Fecha: Sat, 18 Sep 2010 02:21:30 +0200

> OS: Ubuntu 10.4
> Gnome : 2.30.2
> 
> Fmain.border = 0 -->Work, show form without borders
> Fmain.border = 1 --> Nothing
> Fmain.border = 2 --> Nothing
> 
> Regards.
> 
> Cristian Abarzua F
> 

>??

>Border is a boolean property.

Sorry, I thought it worked as in gambas2. What would in Gambas3?

Regards.

Cristian Abarzúa F




--
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Example MoviePlayer in Black

2009-06-30 Thread craf
Hello. 

I'm trying the example that comes with Gambas, called movieplayer. When
the executive, control Movieplay stays black, and only appears sound. 

System to use: 

Ubuntu Jaunty Jackalope 
Shrimp 2.14
mplayer 2.1.0

any idea?

Regards
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Example MoviePlayer in Black

2009-06-30 Thread craf

¡Was absolutely right!. 

Thank you very much

Regards


-Mensaje original-
De: Stefano Palmeri 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Example MoviePlayer in Black
Fecha: Tue, 30 Jun 2009 23:45:32 +0200


Il martedì 30 giugno 2009 22:50:20 craf ha scritto:
> Hello.
>
> I'm trying the example that comes with Gambas, called movieplayer. When
> the executive, control Movieplay stays black, and only appears sound.
>
> System to use:
>
> Ubuntu Jaunty Jackalope
> Shrimp 2.14
> mplayer 2.1.0
>
> any idea?
>
> Regards
> ---
>--- ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user


It seems to be a gb.gtk problem. Save the MoviePlayer example
in your home directory, then open it again and switch from gb.gtk to gb.qt 
in Project-->Properties-->Components.

Stefano


--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] TreeView example doesn't work

2009-06-30 Thread craf
Did you try with version 2.14?. It seems to have no problems



-Mensaje original-
De: Stefano Palmeri 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: [Gambas-user] TreeView example doesn't work
Fecha: Tue, 30 Jun 2009 23:47:04 +0200


TreeView example doesn't work. It simply does nothing.
Gambas 2.13.1.

Stefano

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Controls

2009-07-03 Thread craf

Hello. 

Does anyone know that these controls are used, which are enclosed in the
color red?

Regards



<>--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Controls

2009-07-03 Thread craf
Hi Steve. 

Thanks for reply. 

Yeah, I knew to do, my question is because those icons appear, as I have
tried to understand it serves. 

Regards

-Mensaje original-
De: Stephen Bungay 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Controls
Fecha: Fri, 03 Jul 2009 13:42:53 -0400


They are container objects that arrange their children in rows or 
columns. See

http://gambasdoc.org/help/comp/gb.qt/hbox?en
http://gambasdoc.org/help/comp/gb.qt/hpanel?en

Steve

craf wrote:
> Hello. 
> 
> Does anyone know that these controls are used, which are enclosed in the
> color red?
> 
> Regards
> 
> 
> 
> 
> 
> 
> 
> 
> --
> 
> 
> 
> 
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Text Frame in Bold

2009-07-03 Thread craf

Hello. 

I tried to put in bold the text of a frame, but only the changes at
design time rather than execution.

Does it have to be?

Design time


Execution time



Ubuntu Jaunty Jackalope 9.04
Gambas 2.14

<><>--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Text Frame in Bold

2009-07-03 Thread craf
Hello. 

Disable gb.gtk component and active component gb.qt and no problems. Is
it a bug?


-Mensaje original-
De: craf 
Reply-to: mailing list for gambas users

Para: Lista Gambas Ingles 
Asunto: [Gambas-user] Text Frame in Bold
Fecha: Fri, 03 Jul 2009 14:24:49 -0400


Hello. 

I tried to put in bold the text of a frame, but only the changes at
design time rather than execution.

Does it have to be?

Design time


Execution time



Ubuntu Jaunty Jackalope 9.04
Gambas 2.14

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Text Frame in Bold

2009-07-03 Thread craf
Hi.

Ubuntu Jaunty Jackalope 9.04
Gambas 2.14
Gnome 2.6.28

Regards

-Mensaje original-
De: Jussi Lahtinen 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Text Frame in Bold
Fecha: Fri, 3 Jul 2009 21:58:01 +0300


Seems like bug.
What version of Gambas you are runing?
What is your operating system?


Jussi


On Fri, Jul 3, 2009 at 21:45, craf wrote:
> Hello.
>
> Disable gb.gtk component and active component gb.qt and no problems. Is
> it a bug?
>
>
> -Mensaje original-
> De: craf 
> Reply-to: mailing list for gambas users
> 
> Para: Lista Gambas Ingles 
> Asunto: [Gambas-user] Text Frame in Bold
> Fecha: Fri, 03 Jul 2009 14:24:49 -0400
>
>
> Hello.
>
> I tried to put in bold the text of a frame, but only the changes at
> design time rather than execution.
>
> Does it have to be?
>
> Design time
>
>
> Execution time
>
>
>
> Ubuntu Jaunty Jackalope 9.04
> Gambas 2.14
>
> --
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
> --
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Text Frame in Bold

2009-07-03 Thread craf
Thanks, Benoit.

Regards

-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Text Frame in Bold
Fecha: Fri, 3 Jul 2009 21:23:12 +0200


> Hello.
>
> Disable gb.gtk component and active component gb.qt and no problems. Is
> it a bug?
>
>

Yep, fixed in revision #2062.

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Making a Gambas File

2009-07-09 Thread craf
Hi.

http://vectorlinux.osuosl.org/Uelsk8s/

search:

gambas-beginner-guide.pdf

Regards





-Mensaje original-
De: Ken G. 
Reply-to: mailing list for gambas users

Para: gambas-user@lists.sourceforge.net
Asunto: [Gambas-user] Making a Gambas File
Fecha: Thu, 09 Jul 2009 11:46:50 -0400


I just started using Gambas several weeks ago and I am learning it but 
ever slowly. 

Where can I find a tutorial on how to create, write, read, append and 
delete a file? 

Thanks,

Ken

--
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] IDE gambas in GNOME

2009-07-16 Thread craf
Hello. 

Are there plans for the Gambas IDE GNOME?

Regards

--
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] IDE gambas in GNOME

2009-07-16 Thread craf

Benoit apologized, I said because of my bad bad English. 
I mean look at the IDE. Why not take the look of GNOME?. 
Apologies again.

Regards

-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] IDE gambas in GNOME
Fecha: Thu, 16 Jul 2009 19:42:13 +0200


> Hello.
>
> Are there plans for the Gambas IDE GNOME?
>
> Regards
>

Doesn't it run under Gnome?

--
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] IDE gambas in GNOME

2009-07-16 Thread craf
Thanks for your answer.

Regards
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] IDE gambas in GNOME
Fecha: Thu, 16 Jul 2009 20:35:53 +0200


> Benoit apologized, I said because of my bad bad English.
> I mean look at the IDE. Why not take the look of GNOME?.
> Apologies again.
>
> Regards
>

Qt 4 can be configured to use GTK+ styles, so the development version of 
Gambas follows the Gnome look. I don't know if you can do the same for the 
stable version that uses Qt 3.

Regards,

--
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Firebird + Gambas

2009-07-22 Thread craf
Hi.

Has anyone tried to connect to Firebird with Gambas, and was it?. 
Ideally, if there is no more support for a specific database, shall be
removed from the examples. 
The author of the component can no longer be contacted by email.

Regards
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Firebird + Gambas

2009-07-22 Thread craf

Hi Benoit. 

I am using Ubuntu 9.04 and Gambas version 2.14.0.

Regards

-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Firebird + Gambas
Fecha: Wed, 22 Jul 2009 20:08:38 +0200


> Hi.
>
> Has anyone tried to connect to Firebird with Gambas, and was it?.
> Ideally, if there is no more support for a specific database, shall be
> removed from the examples.
> The author of the component can no longer be contacted by email.
>
> Regards

I recently fixed things in the gb.db.firebird component, that was not compiled 
correctly. Did you try to connect to a Firebird database with the latest 
revision?

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Firebird + Gambas

2009-07-22 Thread craf
OK Benoit. Thanks.

-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Firebird + Gambas
Fecha: Wed, 22 Jul 2009 20:32:29 +0200


> Hi Benoit.
>
> I am using Ubuntu 9.04 and Gambas version 2.14.0.
>
> Regards
>

So you are not using the latest "revision", but the latest "version". I will 
release a 2.15 soon with that fix.

Regards,

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Cannot compile

2009-07-23 Thread craf
-Mensaje original-
De: Fred Ellis 
Reply-to: mailing list for gambas users

Para: gambas-user@lists.sourceforge.net
Asunto: [Gambas-user] Cannot compile
Fecha: 23 Jul 2009 14:30:47 -



This is my first post here, and I'm new to programming.



I saw Gambas and thought I'd investigate as something to try to learn.



I'm using Gambas2 on Linux (PCLOS 2009.1), however Ive hit trouble right at the 
start.



If I load Gambas2 and open the installed examples, I'm told they are read-only 
and when I click run, they compile and run as expected.

 

It is a permissions issue.

Open the console and type what is in bold below: 

p...@pc:~$ cd  /usr/local/share/gambas2/ 

then enter the following: 

p...@pc:~$ sudo chown -R
username.username /usr/local/share/gambas2/examples/ 

The username should you have to enter linux.This changes the owner of
the folder to your root user.


However, if I move any of them to my home directory and try to compile and run 
them, all I see is a message in the bottom left saying "compiling project 
" but nothing runs. Similar if I try to make 
executable, it prompts for a name and I get a similar message to that above, 
but nothing happens. Nothing runs and no file appears to be created.



However, If I make the folder in my home, my moved copy, effectively read only 
by changing the permissions of owner for the folder from 'can view and modify 
content' to 'can view content', I'm then told that the project is read only 
(expected) and then if I try to compile it seems to work OK.  



But now, I guess as its read only, there is no make executable option.



I also tried the simple 'hello world' example entering it all from scratch, and 
the same thing happens. I cannot get it to compile and run.



I guess I'm doing something daft as a new user, but, any ideas anyone?



Thanks.




--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Release of Gambas 2.15

2009-07-26 Thread craf
¡¡¡Cool, thanks, Benoit¡¡¡

Regards
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: gambas-user@lists.sourceforge.net
Asunto: [Gambas-user] Release of Gambas 2.15
Fecha: Sun, 26 Jul 2009 16:17:01 +0200


Hi,

I finally found a moment for making a new release of the stable version.

There are a lot of bug fixes in it, the more important one is that now the 
interpreter won't crash randomly anymore on some systems and not on another. 
This was a very stupid bug of mine, and it was there since the beginning of 
the 64 bits port (revision 1007)!

Here is some other important bug fixes:

- String to number conversion was fixed, especially when converting Long 
numbers. 

- The Firebird driver is compiled correctly now. If some kind guys can try now 
to connect to a Firebird database and tell me if it works, it would be cool.

- The SQLite 3 driver now correctly returns the default value of fields. 

- Raising or lowering controls now works correctly in the GTK+ component. 

- The SMTP component now strictly follows RFC 2047 when sending mails with 
subjects encoded in UTF-8. 

- The Xml.ToString() method was fixed in the XML component.

And here is the full ChangeLog:

---

[DEVELOPMENT ENVIRONMENT]
* BUG: Fix a crash while scanning a class if the project is a component
  and if it is self-checked, which happens as soon as it is locally
  installed.
* BUG: Do not warn when a *.info file is not found, as gb.db.* drivers do
  not have one.
* NEW: Changing the language in the translation dialog now keep the
  current translated string selected, and stay in the same translation 
  file.

[DATABASE MANAGER]
* BUG: Handle correctly database type written in upper case.

[EXAMPLES]
* BUG: Fix the PdfViewer example so that it does not crash when it cannot 
  understand the document index.

[INTERPRETER]
* BUG: Fix a possible crash in database component classes having
  sub-collections, like Result.Fields.
* BUG: Fix a stupid bug that made the interpreter crash when a class was
  allocated at a negative memory address.
* BUG: Fix the conversion of strings into numbers, especially when
  converting Long values.

[COMPILER]
* BUG: Correctly raise a syntax error when a comma has been forgotten
  between the stream and the other arguments in instructions like PRINT,
  SEEK, and so on.

[INFORMER]
* BUG: Warn for components not declaring classes, like database drivers,
  only if the '-v' option is defined.

[GB.DB]
* BUG: Correctly release field information when freeing a Result object.
* NEW: New unquoting function in the component API.

[GB.DB.FIREBIRD]
* BUG: Link the driver to the fbclient library.

[GB.DB.SQLITE2]
* BUG: Prevent possible case mismatches when mapping SQLite datatypes.
* BUG: Fix some casting with gcc version 4.4.0 20090630 (prerelease)
* BUG: Fix a crash in datatype mapping.

[GB.DB.SQLITE3]
* BUG: Prevent possible case mismatches when mapping SQLite datatypes.
* BUG: Field default values are correctly returned now.
* BUG: Fix some casting with gcc version 4.4.0 20090630 (prerelease)
* BUG: Fix a crash in datatype mapping.

[GB.GTK]
* BUG: If the Control.Font property is set with a family name, the other
  boolean properties of the font are reset.
* BUG: Frame.Font now works correctly.
* BUG: The Window.Sticky property now really returns a boolean.
* BUG: Fix all controls that use a GtkScrolledWindow.
* BUG: Fix Control.Raise() and Control.Lower() with controls using a
  GtkScrolledWindow.
* BUG: The ClientWidth and ClientHeight properties of TreeView, ListView
  and ColumnView controls were implemented.
* BUG: The title of GridView headers is now ellipsized, and are not drawn
  anymore when there is no space for that.
* BUG: Fix the leaking of GtkCellRenderer in some classes.

[GB.NET]
* BUG: Fix a possible crash in the Socket class at connection.

[GB.NET.SMTP]
* BUG: Fix the UTF-8 encoding of mail subjects having a '?' character
  inside.
* NEW: Send the "Date:" header with any mail.

[GB.PDF]
* BUG: Fix a possible crash whith PDF documents having index but no action 
  associated with

[GB.QT]
* BUG: If the Control.Font property is set with a family name, the other
  boolean properties of the font are reset.
* BUG: The Window.TopOnly and Window.Stacking properties now return the
  last value assigned as in gb.gtk. It does not try to get the value from
  the window manager, as the change may not be immediate.
* BUG: Fix a typo mistake.
* BUG: Fix the behaviour of TabStrip when all its pages are hidden.

[GB.XML]
* BUG: Fix the Xml.Encoding property that was not implemented. It now
  always returns "UTF-8".
* BUG: Fix a memory leak in Xml.ToString().
* BUG: The encoding argument of Xml.ToString() is now taken into account.
* BUG: Xml.ToString() now uses the UTF-8 charset by default.

---

Regards,

-

[Gambas-user] gb.db.firebird

2009-07-26 Thread craf
Hi. 

¡¡¡Thanks Benoit!!!, the change in component gb.db.firebird ,allows me
to connect directly to firebird.¡¡The driver now works properly. !!
I use: 
Jaunty Jackalope Ubuntu 9.04 
Firebird 2.1-super-server
Gambas 2.15 

Regards.
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Release of Gambas 2.15

2009-07-26 Thread craf

Bonjour Olivier 
Pourquoi ne pas aider à mettre à jour? 
Salutations

-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Release of Gambas 2.15
Fecha: Sun, 26 Jul 2009 23:19:34 +0200

Tout à l'air normal..
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Background color for Textbox

2009-07-28 Thread craf
Hello. 

When selecting a background color for a textbox only allows me to select
any of them. For example to select the color blue shown by the arrow,
shows me a completely different color. Are there certain colors in
Gambas?. Is this normal?.


Select a color for the background 0080ff text box


But this shows me another pink


Regards
<><>--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Procedure new()

2009-07-28 Thread craf
Hi.

What are the roles in the general procedure new ()? 
What difference has the procedure Form_Open ()

Regards
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Background color for Textbox

2009-07-28 Thread craf
Ok. Thanks.

-Mensaje original-
De: richard terry 
Reply-to: richard terry , mailing list for gambas
users 
Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Background color for Textbox
Fecha: Wed, 29 Jul 2009 07:29:25 +1000


On Wed, 29 Jul 2009 05:41:11 am craf wrote:
> Hello.
>
> When selecting a background color for a textbox only allows me to select
> any of them. For example to select the color blue shown by the arrow,
> shows me a completely different color. Are there certain colors in
> Gambas?. Is this normal?.
>
>
> Select a color for the background 0080ff text box
>
>
> But this shows me another pink
>
>
> Regards

Any color including those of  your imagination. HOwever I agree that setting 
it doesn't always work properly.

If you used the pop-up dialog box  


In my version if you type in the hex, nothing changes automatically. Also if 
you click on the color gradient anywhere, the square containing the colour 
dosn't change to indicate - you need to move the brightless slighter at the 
right.

I've raised these things with Benoit before.

Regards

Richard

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Background color for Textbox

2009-07-28 Thread craf
Ok. Thanks very much, Benoit

Regards

-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Background color for Textbox
Fecha: Wed, 29 Jul 2009 00:03:46 +0200


> > Hello.
> >
> > When selecting a background color for a textbox only allows me to select
> > any of them. For example to select the color blue shown by the arrow,
> > shows me a completely different color. Are there certain colors in
> > Gambas?. Is this normal?.
> >
> >
> > Select a color for the background 0080ff text box
> >
> >
> > But this shows me another pink
> >
> >
> > Regards
>
> This is a bug I am currently investigate...

OK, the bug is fixed in revision #2186. This was a fix in Val() for Gambas 3 
that I forgot to backport in Gambas 2.

I will make a 2.15.2 as soon as possible.

Regards,

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Background color for Textbox

2009-07-28 Thread craf
ja,ja, Ok. Thanks

Regards
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Background color for Textbox
Fecha: Wed, 29 Jul 2009 01:39:39 +0200


> > > Hello.
> > >
> > > When selecting a background color for a textbox only allows me to
> > > select any of them. For example to select the color blue shown by the
> > > arrow, shows me a completely different color. Are there certain colors
> > > in Gambas?. Is this normal?.
> > >
> > >
> > > Select a color for the background 0080ff text box
> > >
> > >
> > > But this shows me another pink
> > >
> > >
> > > Regards
> >
> > This is a bug I am currently investigate...
>
> OK, the bug is fixed in revision #2186. This was a fix in Val() for Gambas
> 3 that I forgot to backport in Gambas 2.
>
> I will make a 2.15.2 as soon as possible.
>
> Regards,

The 2.15.2 package has been uploaded to sourceforge, but apparently it is not 
available immediately for downloading.

We can just wait and pray...

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Procedure new()

2009-07-29 Thread craf

thank you very much , and to assimilate the differences

Regards

-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Procedure new()
Fecha: Wed, 29 Jul 2009 16:21:08 +0200


> Benoît Minisini ha scritto:
> >> craf ha scritto:
> >>> Hi.
> >>>
> >>> What are the roles in the general procedure new ()?
> >>> What difference has the procedure Form_Open ()
> >>
> >> If I correctly understand your question...
> >> Regards,
> >> Doriano
> >
> > Or maybe he was talking about "_new()", the constructor?
>
> Yeah... it makes more sense... in this case a old-risen doubt comes to
> my mind: I can't find a documentation for _new(), _init() and perhaps
> other. I suppose _new() is called, then _init(), and finally, in the
> case of a form, Form_Open(). Is it so?
>
> Regards,
> Doriano.
>

Not really:

_init() is called once when the class is loaded. You can see it as the class 
constructor.

_new() is called when the object is created.

Form_Open() is just the event handler of the Open event raised by a Window 
object. It can be raised in many different situations. It usually means that 
the window is going to be shown for the first time.

Regards,

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Password

2009-07-30 Thread craf
Hello. 

I do not understand the use of password every time you open the database
manager. Is for SQLite?, Or is it just for MySQL or Postgres?

Regards
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Help compiling gambas3

2009-08-06 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Help compiling gambas3
Fecha: Thu, 6 Aug 2009 13:28:05 +0200


> Hello all!  Having a little trouble with libtool on Fedora 11_x86.  I've
> downgraded (not easy on F11!) to libtool < 2.0 as suggested on the info
> page:
>
> libtool-1.5.26-4.fc10.i386
> libtool-ltdl-1.5.26-4.fc10.i386
>
> But still receive this error:
>
> /bin/sh ../libtool --tag=CC   --mode=link gcc -DGBX_INFO -I../share
> -D_REENTRANT -I../libltdl  -O0  -module -O1 -z defs  -Lno  -o gb.la -rpath
> /usr/local/lib/gambas3 gb_la-gbx_c_class.lo gb_la-gbx_c_collection.lo
> gb_la-gbx_c_error.lo gb_la-gbx_c_gambas.lo gb_la-gbx_c_file.lo
> gb_la-gbx_c_application.lo gb_la-gbx_c_array.lo gb_la-gbx_c_process.lo
> gb_la-gbx_c_string.lo gb_la-gbx_c_subcollection.lo gb_la-gbx_c_enum.lo
> gb_la-gbx_c_timer.lo gb_la-gbx_class_info.lo -lm-ldl -lpthread
> ../libtool: line 5001: cd: no: No such file or directory
> libtool: link: cannot determine absolute directory name of `no'
> make[4]: *** [gb.la] Error 1
> make[4]: Leaving directory `/home/andy/trunk/trunk/main/gbx'
> make[3]: *** [all-recursive] Error 1
> make[3]: Leaving directory `/home/andy/trunk/trunk/main'
> make[2]: *** [all] Error 2
> make[2]: Leaving directory `/home/andy/trunk/trunk/main'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/home/andy/trunk/trunk'
> make: *** [all] Error 2
> [a...@localhost trunk]$
>
> Any suggestions?  Many thanks.

Sorry for that, but since a few days libtool must not be downgraded anymore. 
You must use libtool 2. Please upgrade, and tell me if everything works. Don't 
forget to do a ./reconf before reconfiguring! If you are not sure, just start 
from a fresh checkout.

Regards,

Hi.

Is it also true for compilations hereafter for Ubuntu?

Regards.
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] GTK key events bug

2009-08-06 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] GTK key events bug
Fecha: Thu, 6 Aug 2009 22:52:35 +0200


> > > Summary: In a graphical application using GTK, a key event produced
> >
> > by a
> >
> > > control is captured by the parent, but key event information
> >
> > provided by
> >
> > > the Key class is not available.
> > >
> > > How to reproduce: In a GTK project, put a form, a control (for
> >
> > example,
> >
> > > a textbox), and the following code:
> > >
> > > PUBLIC SUB Form_KeyRelease()
> > >
> > >   DEBUG Key.Code
> > >
> > > END
> > >
> > > Press a key when the control (not the form) has the focus, and the
> >
> > error
> >
> > > "No keyboard event data." will be produced. This happens in any
> >
> > control
> >
> > > and its container, as far as I've seen.
> > >
> > > Expected behaviour: The information of the pressed key should be
> > > available to the parent also.
> > >
> > > Comments: This can be worse with other controls. For example, a
> >
> > TreeView
> >
> > > control, when editing, shows a textbox, whose events are hidden to
> >
> > the
> >
> > > Treeview user. Therefore, key events on the textbox cannot be
> >
> > handled,
> >
> > > and key-related code put on the treeview's KeyRelease event will
> >
> > raise
> >
> > > an error. This problem does NOT happen with Qt.
> > >
> > > Configuration:
> > > Intel Core2 Duo @ 2GiHz, 2GiB ram
> > > Ubuntu 8.04, kernel 2.6.24-24 generic
> > > Gambas 2.15.2-1, GTK
> >
> > Please can you send a project that shows that bug? I cannot reproduce
> > it there
> > with your explanations.
> >
> > I put a textbox inside a form, and only GTK forms catch the keyboard
> > events
> > from the textbox, not QT forms!
> >
> > Regards,
> >
> > --
> > Benoît
>
> I attach the project with the error (pruebagtk.tar.gz). Type anything on
> the textbox, and the error will show (this was a GTK graphic
> application).
>
> The project inside prueba.tar.gz was created as QT graphic application;
> when typing on the textbox, the key code is printed on the debug screen,
> and the event is not catched by the form.
>
> Best regards,
>
> Carlos

I have exactly the same behaviour I described above... Is your OS 64 bits?


Hi.

I tried the first example pruebagtk.tar.gz and no problems. 
I tried the second example prueba.tar-gz, which uses the QT, not shown
in the debug code of the key pressed. Is that wrong? 
I use: 
Ubuntu-9.04 - 32 bits 
Gambas-2.15.2 
-Gnome

Regards.
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Error gb.desktop

2009-08-18 Thread craf
Hello. 

Today I failed to open prawns. This gives me the following message: 
ERROR: # 27: Can not load component 'gb.desktop': can not find library
file 

Do I delete something?

Regards.
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Fwd: Error gb.desktop]

2009-08-18 Thread craf


Hello. 

Today I failed to open (prawns) Sorry, evil google translate (Gambas) ;=). This 
gives me the following message: 
ERROR: # 27: Can not load component 'gb.desktop': can not find library
file 

Do I delete something?

Regards.
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] web browser.

2009-08-28 Thread craf
it's great¡¡¡.
-Mensaje original-
De: abdurrahman ulusoy 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: [Gambas-user] web browser.
Fecha: Fri, 28 Aug 2009 14:45:44 -0700 (PDT)


when i wait for opengl selection :) , i add some codes to webbrowser (in gambas 
examples). 

if you want to develope gambasweb codes here

 http://code.google.com/p/gambasweb/




  ___
Yahoo! Türkiye açıldı!  http://yahoo.com.tr
İnternet üzerindeki en iyi içeriği Yahoo! Türkiye sizlere sunuyor!
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Release of Gambas 2.16

2009-09-10 Thread craf
Hi.


Thank you very much

CRAF

-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: gambas-user@lists.sourceforge.net
Asunto: [Gambas-user] Release of Gambas 2.16
Fecha: Thu, 10 Sep 2009 01:05:16 +0200


Hi,

This new release includes the main following changes:

- Gambas now compiles with libtool 2.x on recent Ubuntu versions. 
- CTRL+PageUp and CTRL+PageDown now switch between tabs in the IDE. 
- Shortcuts are correctly saved in all cases in the IDE menu editor. 
- The READ instruction has been fixed on 64 bits systems. 
- gb.pdf now compiles with recent poppler versions.

The full ChangeLog is:

---

[CONFIGURATION]
* BUG: Try to fix building with Autoconf 2.64
* NEW: Put custom autoconf macros in the "m4" directory.
* NEW: Drop libltdl.
* NEW: Use a recent libtool.
* NEW: Make the ./reconf script verbose.

[DEVELOPMENT ENVIRONMENT]
* BUG: Clear the breakpoint list when opening a new project.
* BUG: In the menu editor, shortcuts are now correctly saved in all cases.
* BUG: Do not fail to load a project when a component is not installed.
* BUG: In the "Requires" tab of the project property dialog, requirements
  are not incorrectly converted to lower case anymore.
* BUG: Keep case of "Exclude" and "Requires" component properties.

[INTERPRETER]
* BUG: Fix many compilation warnings with gcc 4.4.
* BUG: Setting a breakpoint in the startup class works again.
* BUG: The READ instruction could lead to a crash when reading a string
  with a maximum length. Fix backported from Gambas 3.
* BUG: 64-bits fixes in the interpreter API. Watching file descriptors 
  won't crash anymore on 64 bits system when adresses outside of 32 bits 
  address space are used.
* BUG: Fix an uninitialized value in the date formatting routine.

[COMPILER]
* BUG: "Ambiguous braces" error message was incorrect, and has been
  replaced by "Ambigous brackets".
* BUG: Fix symbol tables that sometimes didn't work correctly when storing
  symbols having non-ASCII characters.

[GB.FORM.MDI]
* NEW: Ctrl+PgUp and Ctrl+PgDown are two new shortcuts to move to the
  previous or next tab in the Workspace control.

[GB.NET]
* BUG: Fix an uninitialized value in SerialPort class, when retrieving the
  port signal status.

[GB.OPENGL]
* BUG: Fix bad code factorization with Gl.Vertex, Gl.Color, Gl.TexCoord
  and Gl.RasterPos

[GB.PDF]
* BUG: Make gb.pdf compile with poppler >= 0.11.3.

[GB.SDL]
* NEW: Remove the old m4 directory before starting backporting the updated
  configuration process from Gambas 3.

[GB.SETTINGS]
* BUG: Fix the internal string quoting routine of the Settings class, so
  that storing strings with newline inside works correctly.

---

Enjoy it!

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Coordinates X and Y en DrawingArea controls

2009-10-03 Thread craf

Hello. 

VisualBasic Picturebox control has a MouseMove event which has 2
arguments (x as integer, and as integer). 
This lets me know the X and Y coordinates when the mouse moves over it. 
Is there something similar in Gambas?

--
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Coordinates X and Y en DrawingArea controls

2009-10-04 Thread craf
Thanks you!.


-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Coordinates X and Y en DrawingArea controls
Fecha: Sun, 4 Oct 2009 15:41:40 +0200


> Hello.
> 
> VisualBasic Picturebox control has a MouseMove event which has 2
> arguments (x as integer, and as integer).
> This lets me know the X and Y coordinates when the mouse moves over it.
> Is there something similar in Gambas?
> 

You have the MouseMove event, but you get the mouse coordinates by using 
Mouse.X and Mouse.Y.

Regards,

--
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] ToolButton

2009-10-06 Thread craf
Hello. 

Is there any way to get a ToolButon text below the image.?, Because the
text is automatically positioned to the right.

Regards
--
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Fwd: ToolButton]

2009-10-06 Thread craf

Hello. 

Is there any way to get a ToolButon text below the image.?, Because the
text is automatically positioned to the right.

Regards
--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] using dh_make

2009-12-03 Thread craf
Hello. 
I'm trying to create packages .deb for each of the components of Gambas.
For those using dh_make. 
This program asks me to rename a folder. Ej, gb.net to
gambas-gb-net_2.18.0. 
 Is this the correct way to rename the folder?. 

Regards.
--
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing. 
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Installing a Gambas program independent of the distribution through DIR GB

2009-12-07 Thread craf
Hello Benoit.

 I'm trying to run Gambas on a computer that does not have the component
packages, based on the help that you gave the user JGuardon, which
wanted to run Gambas on a USB stick.
 In one of the points of support, type:

 2)copy the installation directory Gambas in another folder. Let's name
it "/my/Gambas/dir". 

Question: 

What installation directory is copied?. Those who are in usr/local/bin,
usr/local/lib, usr/local/share?, Or the program directory is being
created.

 At another point he said: 

3) Create a script like that: 

#!/bin/sh
export LD_LIBRARY_PATH=/my/ld/dir:$LD_LIBRARY_PATH
export GB_DIR=/my/gambas/dir
exec /my/application.gambas

Question: 

This script, which must be saved to be executed?. 

If you could give some idea, I appreciate it. 

Regards
--
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing. 
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Installing a Gambas program independent of the distribution through DIR GB

2009-12-09 Thread craf
Thank you very much, for your answer,Benoit.

Regards
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Installing a Gambas program independent of the
distribution through DIR GB
Fecha: Wed, 9 Dec 2009 20:16:06 +0100


> Hello Benoit.
> 
>  I'm trying to run Gambas on a computer that does not have the component
> packages, based on the help that you gave the user JGuardon, which
> wanted to run Gambas on a USB stick.
>  In one of the points of support, type:
> 
>  2)copy the installation directory Gambas in another folder. Let's name
> it "/my/Gambas/dir".
> 
> Question:
> 
> What installation directory is copied?. Those who are in usr/local/bin,
> usr/local/lib, usr/local/share?, Or the program directory is being
> created.

You must recreate the all hierarchy. For example, if the Gambas installation 
directory is /usr/local, you must copy in your directory all Gambas related 
files, following the same hierarchy:

bin/gb*
bin/gambas
lib/gambas2/*
share/gambas2/*
...


> 
>  At another point he said:
> 
> 3) Create a script like that:
> 
> #!/bin/sh
> export LD_LIBRARY_PATH=/my/ld/dir:$LD_LIBRARY_PATH
> export GB_DIR=/my/gambas/dir
> exec /my/application.gambas
> 
> Question:
> 
> This script, which must be saved to be executed?.

Of course. Otherwise you won't be able to run it!

Regards,

--
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Fwd: Not Found component gb.form in /usr/local/lib/gambas2]

2009-12-17 Thread craf
Hello. 

When I create a new project with database support. The hidden file .
project  show me the  components that are needed to run the
application. 

Example.

# Gambas Project File 2.0
Title=myproject
Startup=FMain
Library=gb.db
Library=gb.gtk
Library=gb.gtk.ext
Library=gb.form =>NOT FOUND
Library=gb.db.form

All the components I could find in the folder / usr/local/lib/gambas2 /
but that is not the only component is the gb.form.
How can I locate it, or refers to another component in particular?.

Regards

[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.28-14-generic
DistributionVendor=ubuntu
DistributionRelease="Ubuntu 9.04"

[System]
CPUArchitecture=i686
TotalRam=1026628 kB

[Gambas]
Gambas1=Not Installed
Gambas2=2.18.0
Gambas2Path=/usr/local/bin/gbx2
Gambas3=Not Installed
--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Not Found component gb.form in /usr/local/lib/gambas2

2009-12-17 Thread craf
Hello. 

When I create a new project with database support. The hidden file .
project  show me the  components that are needed to run the
application. 

Example.

# Gambas Project File 2.0
Title=myproject
Startup=FMain
Library=gb.db
Library=gb.gtk
Library=gb.gtk.ext
Library=gb.form =>NOT FOUND
Library=gb.db.form

All the components I could find in the folder / usr/local/lib/gambas2 /
but that is not the only component is the gb.form.
 How can I locate it, or refers to another component in particular?.

Regards

[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.28-14-generic
DistributionVendor=ubuntu
DistributionRelease="Ubuntu 9.04"

[System]
CPUArchitecture=i686
TotalRam=1026628 kB

[Gambas]
Gambas1=Not Installed
Gambas2=2.18.0
Gambas2Path=/usr/local/bin/gbx2
Gambas3=Not Installed
--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] [Fwd: Not Found component gb.form in /usr/local/lib/gambas2]

2009-12-18 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] [Fwd: Not Found component gb.form
in /usr/local/lib/gambas2]
Fecha: Fri, 18 Dec 2009 11:53:09 +0100

> Hello.
> 
> When I create a new project with database support. The hidden file .
> project  show me the  components that are needed to run the
> application.
> 
> Example.
> 
> # Gambas Project File 2.0
> Title=myproject
> Startup=FMain
> Library=gb.db
> Library=gb.gtk
> Library=gb.gtk.ext
> Library=gb.form =>NOT FOUND
> Library=gb.db.form
> 
> All the components I could find in the folder / usr/local/lib/gambas2 /
> but that is not the only component is the gb.form.
> How can I locate it, or refers to another component in particular?.
> 
> Regards
> 

> Your installation of Gambas is apparently broken. How did you install it?

Hi Benoit, thanks for responding. 

I tell you, I'm trying to do an install script of my programs in order
to distribute other equipment. I need to copy all the shared libraries
needed by components Gambas.
 
To do this read the file (. Project) and then run ldd 
instruction. The script finds all least gb.form component.
 
I have no problems running Gambas and run my programs, just do not find
the component gb.form in the folder /usr/local/lib/gambas2. 

The installation I do is the next to my computer with Ubuntu 9.04. 

1) Position needed packages: 

sudo apt-get install build-essential autoconf libbz2-dev libfbclient2
libgnorba-dev libmysqlclient15-dev unixodbc-dev libpq-dev libsqlite0-dev
libsqlite3-dev libgtk2.0-dev libldap2-dev gnutls-dev
libcurl4-libgtkglext1-dev libpcre3-dev libsdl-dev
libsdl-sound1.2-mixer1.2-dev libsdl-image1.2-dev libsage-dev libxml2-dev
libxslt1-dev libbonobo2-dev libcos4-dev libomniorb4-dev librsvg2-dev-dev
libpoppler libpoppler-glib-dev libesd0-dev libasound2-dev libesd-alsa0
libdirectfb-dev-dev libaa1 libxtst-dev libffi-dev kdelibs4-dev
firebird2.1-dev libqt4-dev 

2) After installing I always: 

$ Cd / usr/src/gambas2-2.18.0 
$ Sudo. / Configure-C 
$ Sudo make 
$ Sudo make install 

After that I normally run my program. 

I see the folder / usr/local/lib/gambas2 has a component gb.form.gambas
there any connection between the component gb.form?. 

Any help on this point I would appreciate it.

Regards

[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.28-14-generic
DistributionVendor=ubuntu
DistributionRelease="Ubuntu 9.04"

[System]
CPUArchitecture=i686
TotalRam=1026628 kB

[Gambas]
Gambas1=Not Installed
Gambas2=2.18.0
Gambas2Path=/usr/local/bin/gbx2
Gambas3=Not Installed


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] [Fwd: Not Found component gb.form in /usr/local/lib/gambas2]

2009-12-18 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] [Fwd: Not Found component gb.form
in /usr/local/lib/gambas2]
Fecha: Fri, 18 Dec 2009 15:33:07 +0100

> -Mensaje original-
> De: Benoît Minisini 
> Reply-to: mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] [Fwd: Not Found component gb.form
> in /usr/local/lib/gambas2]
> Fecha: Fri, 18 Dec 2009 11:53:09 +0100
> 
> > Hello.
> >
> > When I create a new project with database support. The hidden file .
> > project  show me the  components that are needed to run the
> > application.
> >
> > Example.
> >
> > # Gambas Project File 2.0
> > Title=myproject
> > Startup=FMain
> > Library=gb.db
> > Library=gb.gtk
> > Library=gb.gtk.ext
> > Library=gb.form =>NOT FOUND
> > Library=gb.db.form
> >
> > All the components I could find in the folder / usr/local/lib/gambas2 /
> > but that is not the only component is the gb.form.
> > How can I locate it, or refers to another component in particular?.
> >
> > Regards
> >
> >
> > Your installation of Gambas is apparently broken. How did you install it?
> 
> Hi Benoit, thanks for responding.
> 
> I tell you, I'm trying to do an install script of my programs in order
> to distribute other equipment. I need to copy all the shared libraries
> needed by components Gambas.
> 
> To do this read the file (. Project) and then run ldd 
> instruction. The script finds all least gb.form component.
> 
> I have no problems running Gambas and run my programs, just do not find
> the component gb.form in the folder /usr/local/lib/gambas2.
> 

>gb.form is a component written in gambas, so you have only the gb.form.gambas 
>and gb.form.component files in the lib/gambas2 directory.
>
>Regards,

Hello.

So I need the component gb.form?. 

If so, why I run my applications, if required this component, because
when you create a basic gtk application, me included?.

What would that do to include it in my collection?, Or is it normal that
I receive?.

Regards.


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] [Fwd: Not Found component gb.form in /usr/local/lib/gambas2]

2009-12-19 Thread craf
-Mensaje original-
De: Jussi Lahtinen 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] [Fwd: Not Found component gb.form
in /usr/local/lib/gambas2]
Fecha: Sat, 19 Dec 2009 16:05:16 +0200

>I can't quite understand your question...
>Gambas has ability to make installation packages (Project --> Make -->
>Installation package...).
>"./configure -C" and "make" doesn't need sudo, only "make install" needs it.
>
>Jussi

Hello.

I have no problem with the installation of Gambas.

What I am trying to do is a script to install my application on another
computer without having all the libraries compartidas.Now, to know what
components are needed, just look at the file (. project), which shows
you the necessary libraries .
Example
Library = gb.db
Library = gb.gtk
etc.

The problem is that Gambas brings extra controls that are installed with
the library gb.form, which comes not listed in the hidden file
(.project), it leaves the library gb.draw which is also required. Only I
mean that in the file (. project) would appear all the libraries that
are marked in the section components within the Gambas IDE.

As I explained Benoit, is that the library is a component gb.form done
with Gambas and therefore does not appear listed in the file (.project).

Unfortunately English is not my native language, and can misinterpret
what I need.

Regards.



On Fri, Dec 18, 2009 at 16:45, craf  wrote:
> -Mensaje original-
> De: Benoît Minisini 
> Reply-to: mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] [Fwd: Not Found component gb.form
> in /usr/local/lib/gambas2]
> Fecha: Fri, 18 Dec 2009 15:33:07 +0100
>
>> -Mensaje original-
>> De: Benoît Minisini 
>> Reply-to: mailing list for gambas users
>> 
>> Para: mailing list for gambas users 
>> Asunto: Re: [Gambas-user] [Fwd: Not Found component gb.form
>> in /usr/local/lib/gambas2]
>> Fecha: Fri, 18 Dec 2009 11:53:09 +0100
>>
>> > Hello.
>> >
>> > When I create a new project with database support. The hidden file .
>> > project  show me the  components that are needed to run the
>> > application.
>> >
>> > Example.
>> >
>> > # Gambas Project File 2.0
>> > Title=myproject
>> > Startup=FMain
>> > Library=gb.db
>> > Library=gb.gtk
>> > Library=gb.gtk.ext
>> > Library=gb.form =>NOT FOUND
>> > Library=gb.db.form
>> >
>> > All the components I could find in the folder / usr/local/lib/gambas2 /
>> > but that is not the only component is the gb.form.
>> > How can I locate it, or refers to another component in particular?.
>> >
>> > Regards
>> >
>> >
>> > Your installation of Gambas is apparently broken. How did you install it?
>>
>> Hi Benoit, thanks for responding.
>>
>> I tell you, I'm trying to do an install script of my programs in order
>> to distribute other equipment. I need to copy all the shared libraries
>> needed by components Gambas.
>>
>> To do this read the file (. Project) and then run ldd 
>> instruction. The script finds all least gb.form component.
>>
>> I have no problems running Gambas and run my programs, just do not find
>> the component gb.form in the folder /usr/local/lib/gambas2.
>>
>
>>gb.form is a component written in gambas, so you have only the gb.form.gambas
>>and gb.form.component files in the lib/gambas2 directory.
>>
>>Regards,
>
> Hello.
>
> So I need the component gb.form?.
>
> If so, why I run my applications, if required this component, because
> when you create a basic gtk application, me included?.
>
> What would that do to include it in my collection?, Or is it normal that
> I receive?.
>
> Regards.
>
>
> --
> This SF.Net email is sponsored by the Verizon Developer Community
> Take advantage of Verizon's best-in-class app development support
> A streamlined, 14 day to market process makes app distribution fast and easy
> Join now and get one step closer to millions of Verizon customers
> http://p.sf.net/sfu/verizon-dev2dev
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>

--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app developmen

Re: [Gambas-user] [Fwd: Not Found component gb.form in /usr/local/lib/gambas2]

2009-12-19 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] [Fwd: Not Found component gb.form
in /usr/local/lib/gambas2]
Fecha: Sat, 19 Dec 2009 22:44:23 +0100

> -Mensaje original-
> De: Jussi Lahtinen 
> Reply-to: mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] [Fwd: Not Found component gb.form
> in /usr/local/lib/gambas2]
> Fecha: Sat, 19 Dec 2009 16:05:16 +0200
> 
> >I can't quite understand your question...
> >Gambas has ability to make installation packages (Project --> Make -->
> >Installation package...).
> >"./configure -C" and "make" doesn't need sudo, only "make install" needs
> > it.
> >
> >Jussi
> 
> Hello.
> 
> I have no problem with the installation of Gambas.
> 
> What I am trying to do is a script to install my application on another
> computer without having all the libraries compartidas.Now, to know what
> components are needed, just look at the file (. project), which shows
> you the necessary libraries .
> Example
> Library = gb.db
> Library = gb.gtk
> etc.
> 
> The problem is that Gambas brings extra controls that are installed with
> the library gb.form, which comes not listed in the hidden file
> (.project), it leaves the library gb.draw which is also required. Only I
> mean that in the file (. project) would appear all the libraries that
> are marked in the section components within the Gambas IDE.
> 
> As I explained Benoit, is that the library is a component gb.form done
> with Gambas and therefore does not appear listed in the file (.project).
> 
> Unfortunately English is not my native language, and can misinterpret
> what I need.
> 
> Regards.
> 

>Yes, there are "hidden" dependencies: gb.draw, that is needed by all GUI 
>components, any gb.db.* driver that could be loaded by the gb.db component.
>
>But you should get an error message while running your program if a Gambas 
>component written in C/C++ is missing.
>
>Beside the hidden dependencies, you just have to list all "Library=" lines in 
>the .project file, and copy in the /lib/gambas2 directory all files beginning 
>with the component name.
>
>For example: you have gb.form in the .project file? Do a "cp gb.form.* 
>".
>
>If you want all the details, read the "how to package gambas" page on the 
>wiki.
>
>Regards,

Thanks Benoit. 

Now I have clearer ideas.

Regards


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Install Gambas 3

2009-12-20 Thread craf
Hello. 

I installed the version 2.18.0  Gambas, through compilation. Now, I try
Gambas3, but will remain installed in another location. 

To install Gambas on my computer I always do: 

sudo. / configure-C 
sudo make 
sudo make install. 

I read the installation page that you use - prefix, but no where to
include it.

Regards
--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Install Gambas 3

2009-12-20 Thread craf
Ok. Thanks for your answer.
-Mensaje original-
De: Jesus Guardon 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Install Gambas 3
Fecha: Sun, 20 Dec 2009 18:57:32 +0100


craf escribió:
> Hello. 
> 
> I installed the version 2.18.0  Gambas, through compilation. Now, I try
> Gambas3, but will remain installed in another location. 
> 
> To install Gambas on my computer I always do: 
> 
> sudo. / configure-C 
> sudo make 
> sudo make install. 
> 
> I read the installation page that you use - prefix, but no where to
> include it.
> 
> Regards

Gambas2 and Gambas3 are independent, they both can coexist without problems.

To install gambas you might not use sudo, but only for 'make install'
command:

./configure -C
make
sudo make install

Hope this helps.

Regards,
Jesus

--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Dinamic Libraries unused with ldd

2009-12-21 Thread craf
Hello 

I'm seeing the dynamic libs that depends gbx2 file. 

For that I use: 

$ ldd / usr/local/bin/gbx2. 

The result gives me is: 

linux-gate.so.1 =>  (0xb8033000)
libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7ff3000)
libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7fef000)
libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7fd5000)
libffi.so.5 => /usr/lib/libffi.so.5 (0xb7fcd000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7e6a000)
/lib/ld-linux.so.2 (0xb8034000)

Now with the -u option, the result is, the result is: 

/lib/tls/i686/cmov/libm.so.6
/lib/tls/i686/cmov/libdl.so.2
/lib/tls/i686/cmov/libpthread.so.0

The -u option (unused) shows me what dependencies are not being used. 

Question: 

Can I ignore these dependencies, since they are not being taken into
account?

Regards.
--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Dinamic Libraries unused with ldd

2009-12-24 Thread craf
Ok Benoit, Thank you very much. 


-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Dinamic Libraries unused with ldd
Fecha: Thu, 24 Dec 2009 17:36:07 +0100


> Hello
> 
> I'm seeing the dynamic libs that depends gbx2 file.
> 
> For that I use:
> 
> $ ldd / usr/local/bin/gbx2.
> 
> The result gives me is:
> 
> linux-gate.so.1 =>  (0xb8033000)
> libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7ff3000)
> libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7fef000)
> libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7fd5000)
> libffi.so.5 => /usr/lib/libffi.so.5 (0xb7fcd000)
> libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7e6a000)
> /lib/ld-linux.so.2 (0xb8034000)
> 
> Now with the -u option, the result is, the result is:
> 
> /lib/tls/i686/cmov/libm.so.6
> /lib/tls/i686/cmov/libdl.so.2
> /lib/tls/i686/cmov/libpthread.so.0
> 
> The -u option (unused) shows me what dependencies are not being used.
> 
> Question:
> 
> Can I ignore these dependencies, since they are not being taken into
> account?
> 
> Regards.

No. Apparently the "-u" option is wrong: the mathematical library is used, 
otherwise how could the Sin() interpreter function work? libdl is used for 
loading component, and libpthread is needed by some components too, but not by 
the interpreter directly.

Moreover, as the interpreter usually loads components at program startup, you 
will have to add all the dependencies of these components.

Regards,

--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] SVG Image

2010-01-28 Thread craf
Hello. 

Is there any way to load an SVG image in Gambas.?

Regards.
--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] SVG Image

2010-01-30 Thread craf
OK. Thanks.
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] SVG Image
Fecha: Sat, 30 Jan 2010 16:38:18 +0100


> Hello.
> 
> Is there any way to load an SVG image in Gambas.?
> 
> Regards.

In Gambas 3, definitely.

--
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Toolpanel retracted

2010-02-26 Thread craf
Hi.

Is there any way to initiate the fully retracted ToolPanel control.?

Regards.
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Property expand in Tabstrip

2010-03-04 Thread craf
Hi.

How can I set a textbox to the width of a tastrip?.The property does not
expand.

Regards


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Send mail with smtp

2010-03-23 Thread craf
Hi.

I'm trying to send an email from my computer, using  the gb.net.smtp
component.

The code that uses it:

' Gambas module file

PUBLIC SUB Main()
 DIM mail AS NEW SmtpClient

mail.To.Add("u...@recipient.net")
mail.Subject = "Test Mail"
mail.From = "u...@sender.com"
mail.Host = "mail.servidor.com"
mail.Port = 25
mail.Add("hello,world", "text/plain")
mail.Send()
END

When executed, this throws the following error:

"Server won't accept sender while starting dialog(smtp error code #575)"

Any ideas?

Regards


[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.28-14-generic
DistributionVendor=ubuntu
DistributionRelease="Ubuntu 9.04"

[System]
CPUArchitecture=i686
TotalRam=1026628 kB

[Gambas]
Gambas1=Not Installed
Gambas2=2.20.2
Gambas2Path=/usr/local/bin/gbx2
Gambas3=Not Installed
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread craf
-Mensaje original-
De: Toni 
Reply-to: ar...@tginet.com, mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Send mail with smtp
Fecha: Tue, 23 Mar 2010 21:26:01 +0100 (Hora estndar romance)



Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Send mail with smtp
Fecha: Tue, 23 Mar 2010 22:28:48 +0100


> -Mensaje original-
> De: Toni 
> Reply-to: ar...@tginet.com, mailing list for gambas users
> 
> Para: mailing list for gambas users 
> Asunto: Re: [Gambas-user] Send mail with smtp
> Fecha: Tue, 23 Mar 2010 21:26:01 +0100 (Hora estndar romance)
> 
> < < < plain-text
> < data
> < from an
> < 
> The remote server requires password, but gb.smtp has no smtp.password.
> How do I authenticate to the remote server?
> 
> regards

>It is a pending problem that does not have a good solution at the moment: the 
>gb.net.smtp component has no support for any authentication.

>I can't add it, because I don't know how to do it. So I should rewrite the 
>component to use a library that know how to authenticate, like libesmtp. But 
>that library has no MIME attachment support, so I have to do it myself. 

>Not something that can be done in five minutes... Unless someone knows a 
>library that can do SMTP with authentication *with* MIME attachment 
>management!

Thanks four your answer.

Regards.
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Send mail with smtp

2010-03-24 Thread craf
-Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Send mail with smtp
Fecha: Wed, 24 Mar 2010 11:00:37 +0100


> Bonsoir Benoit,
> 
> Peut être cela t'aidera:
> 
>   http://www.etpan.org/libetpan/

>Apparently not modified since five years.

> 
>   http://libsmtp.sourceforge.net/

>Not maintained anymore.

> 
>   http://www.gnu.org/software/gss/

>Alpha software.

>Thanks anyway, but something better should be found!


Hello


As I only need to send a string IP, using ssmtp, which allows
authentication, but not MIME attachment.


Regards
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] what kind of application developer Gambas

2010-03-24 Thread craf
-Mensaje original-
De: Tomas Rodriguez 
Reply-to: mailing list for gambas users

Para: gambas-user@lists.sourceforge.net
Asunto: [Gambas-user] what kind of application developer Gambas
Fecha: Tue, 23 Mar 2010 23:44:05 -0400


>Hi
>I am new in gambas I need to know what kind of application I can developer 
>in this programming language?

>thanks
>Tomas 

Gambas es un ambiente de desarrollo libre, basado en un interprete BASIC con 
extensiones objeto.
Con Gambas puedes diseñar rapidamente programas GUI con librerías QT o GTK+, 
acceder a bases de datos
como MYSQL, PostgresSQL, Firebird, ODBC y Sqlite, aplicaciones KDE en Palm 
Pilot con DCOP, traducir los
programas a cualquier lenguaje, crear aplicaciones de red facilmente, realizar 
aplicaciones 3D OpenGl, 
hacer aplicaciones web CGI y mucho mas. Gambas es un proyecto de desarrollo 
Open Source, lanzada bajo la 
Licencia General Pública GPL

Gambas is a free development environment based on a Basic interpreter with 
object extensions,
With Gambas, you can quickly design your program GUI with QT or GTK+, access 
MySQL, PostgreSQL,
Firebird, ODBC and SQLite databases, pilot KDE applications with DCOP, 
translate your program into 
any language, create network applications easily, make 3D OpenGL applications, 
make CGI web applications, and




Regards

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Missing components

2010-03-25 Thread craf
Hi

I'm testing Gambas3 Rev 2825. When I run it and create a GTK + program
gives me this error:

"Missing some components : gb.gtk.ext."

The compilation of the sources did not show any error.

Regards

[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.28-14-generic
DistributionVendor=ubuntu
DistributionRelease="Ubuntu 9.04"

[System]
CPUArchitecture=i686
TotalRam=1026628 kB

[Gambas]
Gambas1=Not Installed
Gambas2=2.20.2
Gambas2Path=/usr/local/bin/gbx2
Gambas3=2.99.0
Gambas3Path=/usr/local/bin/gbx3
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Missing components

2010-03-25 Thread craf
Ok.Thank you.

Regards.

Mensaje original-
De: Benoît Minisini 
Reply-to: mailing list for gambas users

Para: mailing list for gambas users 
Asunto: Re: [Gambas-user] Missing components
Fecha: Thu, 25 Mar 2010 23:18:16 +0100


> Hi
> 
> I'm testing Gambas3 Rev 2825. When I run it and create a GTK + program
> gives me this error:
> 
> "Missing some components : gb.gtk.ext."
> 
> The compilation of the sources did not show any error.
> 
> Regards
> 
> [OperatingSystem]
> OperatingSystem=Linux
> KernelRelease=2.6.28-14-generic
> DistributionVendor=ubuntu
> DistributionRelease="Ubuntu 9.04"
> 
> [System]
> CPUArchitecture=i686
> TotalRam=1026628 kB
> 
> [Gambas]
> Gambas1=Not Installed
> Gambas2=2.20.2
> Gambas2Path=/usr/local/bin/gbx2
> Gambas3=2.99.0
> Gambas3Path=/usr/local/bin/gbx3

This is a bug in the IDE, the gb.gtk.ext component does not exist anymore. As 
a workaround, edit the ".project" file located in your project directory with 
a text editor, and remove the line "Library=gb.gtk.ext".

Regards,

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


  1   2   >