Re: [Gambas-user] [Fwd: Web page 1st image (new idea)]

2011-06-24 Thread Demosthenes Koptsis
ok, the image is now - without background - and transparent - and a png file. http://www.mediafire.com/imgbnc.php/ef7579d9905d5de16b817150338cd5f647ef7addbf5da9ca62dba4781b20a7bb6g.jpg you will use the same background as it is now at page? or you need another one? On Sat, 2011-06-25 at 0

[Gambas-user] Constructor and destructor of a class

2011-06-24 Thread Demosthenes Koptsis
Hi all, i saw that the order of calling special methods of a class is: _init _new _free _exit the _new method is the constructor and _free the destructor of the class? -- Regards, Demosthenes Koptsis. -- All the dat

Re: [Gambas-user] Problem with index order in debugging window.

2011-06-24 Thread Zach Smith
> > Fixed in revision #3899. > > Regards, > This fixed issue 28 for gambas 3. -- All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security

Re: [Gambas-user] gambas2 and gambas3 Natty

2011-06-24 Thread Ian Haywood
On Sat, Jun 25, 2011 at 5:29 AM, M. Cs. wrote: > Hello, > because of a foolish error I cannot use both gambas2 and gambas3 on Natty: > > gambas3-script_2.99.1-1natty0_i386.deb (--install): >  trying to overwrite > '/usr/share/icons/hicolor/64x64/mimetypes/application-x-gambasscript.png', > which i

Re: [Gambas-user] Bug with border property.

2011-06-24 Thread Benoît Minisini
> Hi! > Borderless windows doesn't work (borders are showing) when combined to > 'Mask = True'. > Problem is only with Qt4, with GTK+ everything is OK. > > Gambas 3 rev 3888 @ Ubuntu 11.04 64bit > > Jussi I habe no problem on KDE. Which window manager do you use? -- Benoît Minisini --

Re: [Gambas-user] [Fwd: Web page 1st image (new idea)]

2011-06-24 Thread Benoît Minisini
> Fixed! > > http://img27.mediafire.com/a4ce70f256e74e34c675f735e2fc20c1fd53c03150b7b900 > 3eae0714ae734c3d6g.jpg > > is it ok now? > I need the background separated from the three windows and the mascot, as in the current website. The background should be a "jpeg", whereas the rest should be

Re: [Gambas-user] gb3: Format$

2011-06-24 Thread Benoît Minisini
> I'm using this to print a formatted date: > > Draw.Text("Date and Time: " & CDate(Server.DateCurrent) & " (" & > Format$(CDate(Server.DateCurrent), "hh:nn:AM/PM") & ")", 32, ystart - 1) > > It seems that Format$ actually changes the value of Server.DateCurrent, > making it AM when it should be

Re: [Gambas-user] Problem with index order in debugging window.

2011-06-24 Thread Benoît Minisini
> I've stopped my program to check the value of 3-dimension array variable > ctlpts[256,256,3], and it seems that the index used to show the values is > mixed - it's [3,256,256] (3rd value, 1st value, 2nd value) and it causes > "out of bounds" error. Screenshot attached. > > My system: Linux Mint

[Gambas-user] gambas2 and gambas3 Natty

2011-06-24 Thread M. Cs.
Hello, because of a foolish error I cannot use both gambas2 and gambas3 on Natty: gambas3-script_2.99.1-1natty0_i386.deb (--install): trying to overwrite '/usr/share/icons/hicolor/64x64/mimetypes/application-x-gambasscript.png', which is also in package gambas2-script 2.21.0-1ubuntu1 Because of

Re: [Gambas-user] [Fwd: Web page 1st image (new idea)]

2011-06-24 Thread Demosthenes Koptsis
Fixed! http://img27.mediafire.com/a4ce70f256e74e34c675f735e2fc20c1fd53c03150b7b9003eae0714ae734c3d6g.jpg is it ok now? On Thu, 2011-06-23 at 22:12 +0200, Fabien Bodard wrote: > 2011/6/21 Demosthenes Koptsis : > > The new version with web site dimensions is this one > > > > http://img28.mediafir

[Gambas-user] Rejoindre mon réseau sur LinkedIn

2011-06-24 Thread Wilson Pedro Tamega Junior via LinkedIn
LinkedIn Wilson Pedro Tamega Junior souhaite se connecter à vous sur LinkedIn : -- Je vous invite à faire partie de mon réseau professionnel en ligne sur le site LinkedIn. Accepter l'invitation de Wilson Pedro Tamega Junior http://w

Re: [Gambas-user] Catching an Event from an Object in another Class

2011-06-24 Thread Fabien Bodard
2011/6/24 tobias : > hi, > >> PUBLIC SUB _new(hSubject AS Editor) >> >>   hEditor = hSubject >>   object.attach(hSubject, me, "heditor") >> >> END >> > > thanks a lot. i just read this, too, but didn't notice that it could be > significant. > anyway, thanks, > tobi > > -

Re: [Gambas-user] Catching an Event from an Object in another Class

2011-06-24 Thread tobias
hi, > PUBLIC SUB _new(hSubject AS Editor) > > hEditor = hSubject > object.attach(hSubject, me, "heditor") > > END > thanks a lot. i just read this, too, but didn't notice that it could be significant. anyway, thanks, tobi --

Re: [Gambas-user] Catching an Event from an Object in another Class

2011-06-24 Thread Fabien Bodard
PUBLIC SUB _new(hSubject AS Editor) hEditor = hSubject object.attach(hSubject, me, "heditor") END 2011/6/24 tobias : > hi everyone, > > i want to get the Editor_Highlight event of an Editor on a form in a > separate class, too. i have in the following in that class: > > PRIVATE hEditor AS Ed

[Gambas-user] Catching an Event from an Object in another Class

2011-06-24 Thread tobias
hi everyone, i want to get the Editor_Highlight event of an Editor on a form in a separate class, too. i have in the following in that class: PRIVATE hEditor AS Editor PUBLIC SUB _new(hSubject AS Editor) hEditor = hSubject END PUBLIC SUB hEditor_Highlight() PRINT Highlight.Text END