Re: [Gambas-user] Toolbox Display - GB3

2011-07-03 Thread Benoît Minisini
> On Mon, 2011-07-04 at 00:03 +0200, Benoît Minisini wrote: > > > I noticed that the only way to get the component toolbox to display in > > > the IDE was to have the properties panel enabled first. (display menu > > > option) Is there a reason the property panel needs to be present before > > > th

Re: [Gambas-user] Toolbox Display - GB3

2011-07-03 Thread John Spikowski
On Mon, 2011-07-04 at 00:03 +0200, Benoît Minisini wrote: > > I noticed that the only way to get the component toolbox to display in > > the IDE was to have the properties panel enabled first. (display menu > > option) Is there a reason the property panel needs to be present before > > the IDE tool

Re: [Gambas-user] Issue 73 in gambas: Gambas 3 under LXDE

2011-07-03 Thread gambas
Updates: Status: WontFix Labels: -Version Version-TRUNK Comment #1 on issue 73 by benoit.m...@gmail.com: Gambas 3 under LXDE http://code.google.com/p/gambas/issues/detail?id=73 Hu hu. You must install a program named "qtconfig" that will allow to configure the colors used by Qt.

Re: [Gambas-user] Issue 72 in gambas: Installation error with reconf

2011-07-03 Thread gambas
Updates: Status: WontFix Labels: -Version Version-TRUNK Comment #1 on issue 72 by benoit.m...@gmail.com: Installation error with reconf http://code.google.com/p/gambas/issues/detail?id=72 Did you check your libtool/automake/autoconf version numbers? They must match the require

Re: [Gambas-user] Issue 70 in gambas: Package build wizard increments project version number of project being built

2011-07-03 Thread gambas
Updates: Status: Fixed Comment #2 on issue 70 by benoit.m...@gmail.com: Package build wizard increments project version number of project being built http://code.google.com/p/gambas/issues/detail?id=70 Fixed in revision #3919: the project version release number is not incremented anym

Re: [Gambas-user] Toolbox Display - GB3

2011-07-03 Thread Benoît Minisini
> I noticed that the only way to get the component toolbox to display in > the IDE was to have the properties panel enabled first. (display menu > option) Is there a reason the property panel needs to be present before > the IDE tools are available? > Sorry, I don't understand the point. Properti

[Gambas-user] Probable bug with "_unknown" method

2011-07-03 Thread Gary D Walborn
Benoit, I think I can work with that solution. Unfortunately it will be about a week before I can test it. -- All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record

Re: [Gambas-user] Component requirements

2011-07-03 Thread tobias
> Can't load or create? ... looks like file/directory permissions or file > mode issues to me. can't be. usually there is no such error. just when i do Component.Load() in the console before. and the modes of the gambas components aren't likely to change on my system ;)

Re: [Gambas-user] Component requirements

2011-07-03 Thread John Spikowski
On Sun, 2011-07-03 at 21:02 +0200, tobias wrote: > Benoît Minisini schrieb: > >>> I need the component project. > >> o.k., the error was "Cannot load class 'Socket': unable to load class > >> file". component is attached. > > > > OK, I see. > > > > Component.Load("test_comp") will not force the l

[Gambas-user] Toolbox Display - GB3

2011-07-03 Thread John Spikowski
I noticed that the only way to get the component toolbox to display in the IDE was to have the properties panel enabled first. (display menu option) Is there a reason the property panel needs to be present before the IDE tools are available? -

Re: [Gambas-user] Component requirements

2011-07-03 Thread tobias
Benoît Minisini schrieb: I need the component project. o.k., the error was "Cannot load class 'Socket': unable to load class file". component is attached. OK, I see. Component.Load("test_comp") will not force the load of the gb.net component. At the moment, the components dependencies are co

Re: [Gambas-user] Component requirements

2011-07-03 Thread Benoît Minisini
> > I need the component project. > > o.k., the error was "Cannot load class 'Socket': unable to load class > file". component is attached. OK, I see. Component.Load("test_comp") will not force the load of the gb.net component. At the moment, the components dependencies are computed by the IDE,

Re: [Gambas-user] Component requirements

2011-07-03 Thread tobias
I need the component project. o.k., the error was "Cannot load class 'Socket': unable to load class file". component is attached. test_comp-0.0.2.tar.gz Description: GNU Zip compressed data -- All of the data generat

Re: [Gambas-user] Component requirements

2011-07-03 Thread Benoît Minisini
> hi, > > > Please send your project and I will tell you. > > which project? component or project that uses it? > actually there is no "project". both are test cases. > in the component, there is: > PUBLIC SUB _init() >DIM s AS NEW Socket > END > > and in the project: > PUBLIC SUB Button1_Cl

Re: [Gambas-user] Component requirements

2011-07-03 Thread tobias
hi, > > Please send your project and I will tell you. > which project? component or project that uses it? actually there is no "project". both are test cases. in the component, there is: PUBLIC SUB _init() DIM s AS NEW Socket END and in the project: PUBLIC SUB Button1_Click() Component.L

Re: [Gambas-user] Probable bug with "_unknown" method when used for properties

2011-07-03 Thread Benoît Minisini
> > > Benoit, > > > > > > Done! Here you go! > > > > > > gwalborn > > > > OK, the problem is worse than I thought. It is a deep design error in > > Gambas, that prevent _unknown from dealing with properties in all > > possible cases. > > > > I will search again for a solution, but I am not

Re: [Gambas-user] Component requirements

2011-07-03 Thread Benoît Minisini
> hi, > > in a component, i need the gb.net component and so i added it to the > list in requirements tab and compiled everything. if my component gets > loaded, i get an error saying that i use an unknown symbol or something > like that (it's some time ago and i just remembered that i wanted to a

[Gambas-user] Component requirements

2011-07-03 Thread tobias
hi, in a component, i need the gb.net component and so i added it to the list in requirements tab and compiled everything. if my component gets loaded, i get an error saying that i use an unknown symbol or something like that (it's some time ago and i just remembered that i wanted to ask for t

Re: [Gambas-user] Please help me!

2011-07-03 Thread Benoît Minisini
> I've tried to do exactly what I've done in G2: giving coordinates in > original pixel sizes of the image. > Can I set the resolution to 300 dpi and to use the originally measured > horizontal and vertical pixel coordinates for printing? You know the > program I'm working on is right about the usi

Re: [Gambas-user] Please help me!

2011-07-03 Thread M. Cs.
I've tried to do exactly what I've done in G2: giving coordinates in original pixel sizes of the image. Can I set the resolution to 300 dpi and to use the originally measured horizontal and vertical pixel coordinates for printing? You know the program I'm working on is right about the using mouse c