2010/1/18 Benoît Minisini :
>> > my desktop scale is 7
>> >
>> >
>> > my screen size is 1280 x 800
>>
>> OK, I succeeded in reproducing the bug. Now I have to investigate...
>>
>
> The bug has been fixed in revision #2613 for Gambas 2. The fix for Gambas 3
> will follow.
Thanks for that.
2010/1/18 Benoît Minisini :
>> OK , I think I finally found the bugs .
>>
>> you can try your self and will see the bug.
>> 1. add a button to a form
>> 2. change the button width and height to 60 . or any even number
>> 3. click to select the button to copy and paste . see the new pasted button
>>
2010/1/17 kevinfishburne :
> When retrieving the value of a pixel at x,y from the picture in a picturebox
> control it outputs a single value. How does this value represent the pixel's
> value, and can it be easily converted to an RGB value?
Red = Value Mod 256
Green = Int(Value / 256) Mod 256
Bl
2010/1/17 Aaron Peachey :
> Hi all,
> I'm just learning Gambas and trying to do something simple (I thought)
> by making custom versions of controls.
>
> For example, I want to inherit the Label and TextBox controls to add
> some new properties and methods.
> As a basic example, in my program the l
2010/1/17 kobolds :
>
> OK , I think I finally found the bugs .
>
> you can try your self and will see the bug.
> 1. add a button to a form
> 2. change the button width and height to 60 . or any even number
> 3. click to select the button to copy and paste . see the new pasted button
> width and he
2010/1/17 kobolds :
>
> I using gb3 and qt4 and I still having these problem
Yes, but did you select qt4 in Project > Properties > Components?
--
Throughout its 18-year history, RSA Conference consistently attracts the
wo
2010/1/16 Pino Zollo :
> The two print statements print exactly the same thing...the Lista.key is
> correct and all different, but the
> other ( ; Element[1];; " ";; Element[0] ) print always the last element
> added to the structure.
First you need to sort out if you have a problem in your d
2010/1/16 Fiddler63 :
> kobolds wrote:
>>
>> gambas3 qt4
>>
>> I notice that gb ide auto change the width when it's not suppose too.
>>
>> I have 3 button each with width 90, 100,100
>>
>> I want all 3 button width become 90 . I select them and choose align same
>> width . I notice all 3 button wi
2010/1/15 nospam.nospam.nos...@gmail.com :
> I have this line of code:
>
> Reg = New Regexp("=A7=F1=FChw=A4=A3", "=[\\da-fA-F]{2}")
>
> "=A7" is correctly matched, but it is the only match returned.
>
> How do I make Regexp match every occurrence
I have this line of code:
Reg = New Regexp("=A7=F1=FChw=A4=A3", "=[\\da-fA-F]{2}")
"=A7" is correctly matched, but it is the only match returned.
How do I make Regexp match every occurrence so that =F1,=FC, =A4 and
=A3 are also returned as matches?
I've tried perldoc.perl.org and other sites bu
On Tue, 2009-11-03 at 19:58 +0100, Benoît Minisini wrote:
> It should be fixed in revision #2408. Only people installing Gambas locally
> like you got the bug.
Where is the revision number to be found?
--
Let Crystal R
On Mon, 2009-11-02 at 21:34 +0100, Ron wrote:
> Benoît Minisini schreef:
> >> I have tried with different GTK+ styles with no luck.
> >> Maybe someone else running an Ubuntu Karmic 32bits can give SidePanel a
> >> try. Thanks,
> >> Toni
> >>
> >>
> >
> > I have upgraded my Ubuntu 9.04 to Ubun
On Tue, 2009-11-03 at 09:04 +0100, Ron wrote:
> When using revision 2407 you cannot start the IDE anymore.
2407, being?
And of course, it's Gambas that's at fault, not you or your OS, yes?
No such problem here, honey, peach, sugar.
> ERROR: #27: Cannot load component 'gb.qt': cannot find libra
On Mon, 2009-11-02 at 18:51 +0100, Johny Provoost wrote:
> Strange. Must be something in Ubuntu if no one else have it.
It is Ubuntu. I'm running 9.10 x64 and your problem is reproducible
here.
--
Come build with us! T
On Mon, 2009-11-02 at 18:31 +0100, Eric Buhagiar wrote:
> Bonjour,
>
> Après des échanges sur des forums, la question persiste.
>
> Peut on lire les propriétés Red,Green,Blue directement calculées par un
> ColorChooser ?
> Cette classe fait les conversions, j'ai essayé pas mal de méthodes
> mais
forge.net" to request signup
to work on the documentation so I clarify these things as I go. It's the
least I can do.
> nospam.nospam.nos...@gmail.com schrieb:
> > Is there a way to selectively disable the buttons on the navigation
> > panel shown on a DataBrowser? I wa
Is there a way to selectively disable the buttons on the navigation
panel shown on a DataBrowser? I want to allow users to move forward and
back through the data but not add, delete or save changes.
Thanks for your assistance.
-
On Wed, 2009-10-14 at 03:57 -0700, Bill-Lancaster wrote:
> Is it possible to set a control's backcolor to a custom value?
> If so how?
Control.BackColor
Or
Control.Background
TextBox1.BackColor = &HEF0F&
--
Come b
On Wed, 2009-10-14 at 09:28 +0200, Matti wrote:
> Somewhere in the mailing archives I've read that a TextEdit could display
> HTML files "nicely".
> But how?
>
> When I do
> textstr = File.Load("xyfile.html")
> TextEdit1.Text = textstr
>
> a plain text is shown, without any formatting. All the H
On Tue, 2009-10-13 at 18:58 +0200, Benoît Minisini wrote:
> > This has me pulling my hair out. I think I have narrowed the problem
> > down to the GTK+ toolkit for Gambas.
> >
> > If I create a GTK+ project and put a TextBox and a ValueBox on a form
> > and set their default values, when I tab to
This has me pulling my hair out. I think I have narrowed the problem
down to the GTK+ toolkit for Gambas.
If I create a GTK+ project and put a TextBox and a ValueBox on a form
and set their default values, when I tab to the TextBox I can over-type
the text, but when I tab to the ValueBox, the numb
On Mon, 2009-10-12 at 10:46 +0200, Ron_1st wrote:
> On Monday 12 October 2009, nospam.nospam.nos...@gmail.com wrote:
> > Easy instructions, even I could follow them:
> > http://www.ziddu.com/download/5849757/Install-Gambas-2.15-in-ubuntu.pdf.html
> >
>
> OMG
> That
On Sun, 2009-10-11 at 19:38 +0200, Johny Provoost wrote:
> I work with gambas 2.8 in Ubuntu 9.04 and QT
> (GTK gives the same result)
First, download and compile v2.16 of Gambas then retest.
Download:
http://linux.softpedia.com/get/Programming/Interpreters/Gambas-2-1180.shtml
Easy instructions,
On Fri, 2009-10-09 at 02:59 -0700, Bill-Lancaster wrote:
> My Gambas PC is attached to a Windows Network - how can I access files there
> from a Gambas application?
Mount the path to the network directory with rw and use standard gambas
file operations on the mount point.
---
he comments and upload it there in a week or so. Your help was
appreciated.
> Regards,
> Dimitris
>
> On Tue, Oct 6, 2009 at 12:33 AM, nospam.nospam.nos...@gmail.com <
> nospam.nospam.nos...@gmail.com> wrote:
>
> > I have written a class that supports sending and
I have written a class that supports sending and retrieving articles
to/from NNTP servers. I also have a small example GUI around it that
uses the class to post usenet messages.
The class, based on RFC 2980 and RFC 977, supports getting all groups,
getting new groups, XOVER headers, posting, separ
On Sun, 2009-10-04 at 16:30 +0200, Ron wrote:
> nospam.nospam.nos...@gmail.com wrote:
> > On Sun, 2009-10-04 at 16:11 +0200, Benoît Minisini wrote:
> >
> >
> >>> I upgraded to 2.16 and still have the problem. MySock_Read doesn't fire.
> >>> Ther
On Sun, 2009-10-04 at 16:11 +0200, Benoît Minisini wrote:
> > I upgraded to 2.16 and still have the problem. MySock_Read doesn't fire.
> > There is an NNTP server on 192.168.1.8:5000 that sends back a greeting
> > when the connection is made by the client. The server logs also indicate
> > that no
On Sun, 2009-10-04 at 21:17 +0800, Werner wrote:
> PRIVATE MySock AS Socket
>
>
> PUBLIC SUB Form_Open()
> MySock = NEW Socket'the socket is now
> created. Stream is closed
> MySock.Connect("localhost", 7000) 'does open the stream.
> END
>
> I cannot repr
On Sun, 2009-10-04 at 15:05 +0200, Ron wrote:
> nospam.nospam.nos...@gmail.com wrote:
> > On Sun, 2009-10-04 at 14:53 +0200, Ron wrote:
> >> And version 2.8 is a bit old, tons of bug fixes since then (we are at
> >> 2.17 now)
> >>
> >
> >
On Sun, 2009-10-04 at 14:53 +0200, Ron wrote:
> nospam.nospam.nos...@gmail.com wrote:
> > On Sun, 2009-10-04 at 19:35 +0800, Werner wrote:
> >
> >> nospam.nospam.nos...@gmail.com wrote:
> >>
> >>> I tried to create an application using a S
On Sun, 2009-10-04 at 19:35 +0800, Werner wrote:
> nospam.nospam.nos...@gmail.com wrote:
> > I tried to create an application using a Socket instantiated in code:
> >
> > [CODE]
> > PRIVATE MySock AS Socket
> >
> > PUBLIC SUB Form_Open()
> >
>
I tried to create an application using a Socket instantiated in code:
[CODE]
PRIVATE MySock AS Socket
PUBLIC SUB Form_Open()
MySock = NEW Socket
END
[/CODE]
I also tried:
[CODE]
PRIVATE MySock AS NEW Socket
[/CODE]
I had endless trouble getting the Socket to work so I created a new
proje
33 matches
Mail list logo