Re: [Gambas-user] Text width in tableview

2012-12-17 Thread bill-lancaster
Thank you Benoît -- View this message in context: http://gambas.8142.n7.nabble.com/Text-width-in-tableview-tp40381p40411.html Sent from the gambas-user mailing list archive at Nabble.com. -- LogMeIn Rescue: Anywhere,

Re: [Gambas-user] Paint again

2012-12-17 Thread Charlie Reinl
Am Sonntag, den 16.12.2012, 19:02 +0100 schrieb Benoît Minisini: Le 16/12/2012 14:11, Charlie Reinl a écrit : Salut, as you can see on Bildschirmfoto.png the Paint.Background is changed to Color.Cyan (65535) then on Bildschirmfoto-1.png with Paint.Brush = Paint.Color(0) the

[Gambas-user] Fwd: Re: Paginate doesn't clear page

2012-12-17 Thread Rolf-Werner Eilert
Benoit, Have you found time to verify this? Am I doing something wrong, or is it a feature? :-) Regards Rolf Original-Nachricht Betreff: Re: [Gambas-user] Paginate doesn't clear page Datum: Wed, 05 Dec 2012 13:09:15 +0100 Von: Rolf-Werner Eilert eilert-sprac...@t-online.de

Re: [Gambas-user] Paint again

2012-12-17 Thread Benoît Minisini
Le 17/12/2012 11:49, Charlie Reinl a écrit : Oh, thats right. But sorry, that I don't understand. By coding Paint.Background = Color.Cyan ' set the Background Color Paint.Brush = Paint.Color(0)' set the Foreground Color Paint.ClipRect(10, 135,50,22) '

[Gambas-user] Paint again and Print

2012-12-17 Thread Karl Reinl
Salut, this tiny printing project is based on the question of Rolf-Werner Eilert. I can not reproduce his printing problem, but I have another. While I'm printing into a PDF, if you use it several times the Font.Size change, even with a Print.Font set. The changes go from tiny points on the

[Gambas-user] Return Finally

2012-12-17 Thread John Rose
I've just moved to Ubuntu Precise from Lucid so my brain is in a whirl! I have at the start of a sub: Inc Application.Busy I have at the end of a Sub: Finally Dec Application.Busy However, sometimes the Sub, a Return statement is executed. This appears to result in the Dec Application.Busy

[Gambas-user] RaspberryPi

2012-12-17 Thread John Rose
Could anyone tell me what the best method of installing Gambas3 on a RaspberryPi is? When I get my RaspberryPi, I assuming that it will have Debian Squeeze installed on it. -- Regards, John 01902 331266 -- LogMeIn

Re: [Gambas-user] RaspberryPi

2012-12-17 Thread Emil Lenngren
I compiled from source, that worked fine. Maybe there are binary packages for armhf now, they didn't exist when I tested... /Emil 2012/12/17 John Rose john.aaron.r...@gmail.com Could anyone tell me what the best method of installing Gambas3 on a RaspberryPi is? When I get my RaspberryPi, I

Re: [Gambas-user] RaspberryPi

2012-12-17 Thread Rob Kudla
On 12/17/2012 09:59 AM, Emil Lenngren wrote: I compiled from source, that worked fine. Maybe there are binary packages for armhf now, they didn't exist when I tested... Yes, there are gambas2/3 packages for both armhf and armel in the universe repositories now.

Re: [Gambas-user] Return Finally

2012-12-17 Thread John Rose
Thanks, Tobias. I've put a copy of the Dec Application.Busy statement before the Return statement and it now works fine. I'm also trying to cope with switching to Thunderbird from Evolution as well as adjusting to Unity! At least, that's my excuse for not seeing the obvious!

Re: [Gambas-user] RaspberryPi

2012-12-17 Thread John Rose
Emil Rob, Thanks for your replies. I presume that armhf is appropriate for RaspberryPi. I assume that Ubuntu repos will be fine for Debian Squeeze. I'll let you know how I get on. -- LogMeIn Rescue: Anywhere, Anytime

Re: [Gambas-user] RaspberryPi

2012-12-17 Thread Rob
On 12/17/2012 11:31 AM, John Rose wrote: Emil Rob, Thanks for your replies. I presume that armhf is appropriate for RaspberryPi. I assume that Ubuntu repos will be fine for Debian Squeeze. I'll let you know how I get on. Sorry for the confusion. I just answered that question for someone on

[Gambas-user] Strange behaviour of Frames

2012-12-17 Thread Matti
Here is a very strange thing in the Form editor, happening only with Frames (as it seems to me now): The form has the focus. a) I click on a Frame, hold the mouse button down and move the mouse: works as expected, the Frame is being moved. b) I click on a Frame to give it the focus, then

Re: [Gambas-user] Feature request: Component hunt disabler

2012-12-17 Thread M. Cs.
Why, I could not reproduce the error! 2012/12/16 Benoît Minisini gam...@users.sourceforge.net Le 16/12/2012 19:36, M. Cs. a écrit : Hello Benoit, I would like to ask you to set a default behavior for the Gambas3 IDE: When I do some changes either in code editor in let say Public Sub

[Gambas-user] Setting all RadioButton's values to false

2012-12-17 Thread M. Cs.
Is there a possibility to set all the RadioButton's values to false? E.G: RadioButton1.Value = False RadioButton2.Value = False RadioButton3.Value = False RadioButton4.Value = False RadioButton5.Value = False RadioButton6.Value = False Will still leave the last clicked RadioButton's value True.

Re: [Gambas-user] Setting all RadioButton's values to false

2012-12-17 Thread Matti
Don't think so. See http://gambasdoc.org/help/comp/gb.qt/radiobutton?v2 RadioButtons are for choosing only one in a group, but always choosing one. If you want to deselect all, you should use CheckBoxes. Am 17.12.2012 21:23, schrieb M. Cs.: Is there a possibility to set all the RadioButton's

Re: [Gambas-user] Fwd: Re: Paginate doesn't clear page

2012-12-17 Thread Benoît Minisini
Le 17/12/2012 12:18, Rolf-Werner Eilert a écrit : Benoit, Have you found time to verify this? Am I doing something wrong, or is it a feature? :-) Regards Rolf Maybe we misunderstood there. You must remove the drawing code from the Paginate event. Did you do that? Paginate has nothing

Re: [Gambas-user] Setting all RadioButton's values to false

2012-12-17 Thread Richard Terry
You can in an emulated way, simply add an extra radiobutton in the series but make its visible property false and don't allow setting focus or tabbing to it. When you want to clear the 'visible ones' set the invisible one to True. I use it all the time throughout my program Regards richard

Re: [Gambas-user] Setting all RadioButton's values to false

2012-12-17 Thread Matti
Clever. But I don't understand: the RadioBoxes in a container are made for deciding between some defined options. In which situation you could decide to 'none'? E.g. send a document to a printer or export it as a .pdf or something, set the page layout to landscape or portrait, choose between

Re: [Gambas-user] Setting all RadioButton's values to false

2012-12-17 Thread Matti
... or you just could add an 'other' RadioBox: Pet: - Dog - Cat - Parrot - Turtle - Other Am 17.12.2012 22:21, schrieb Matti: Clever. But I don't understand: the RadioBoxes in a container are made for deciding between some defined options. In which situation you could decide to 'none'?

Re: [Gambas-user] Feature request: Component hunt disabler

2012-12-17 Thread Adrien Prokopowicz
Hi Benoît, I have the same problem since a few weeks now, and I just understood what it was. Actually, when I get a compilation warning, the IDE automatically jumps to the position of the warning, and makes these messy jumps. I know that I should write my code so that I won't have any

Re: [Gambas-user] Feature request: Component hunt disabler

2012-12-17 Thread Benoît Minisini
Le 18/12/2012 01:01, Adrien Prokopowicz a écrit : Hi Benoît, I have the same problem since a few weeks now, and I just understood what it was. Actually, when I get a compilation warning, the IDE automatically jumps to the position of the warning, and makes these messy jumps. I know that I

[Gambas-user] R: Setting all RadioButton's values to false

2012-12-17 Thread Ru Vuott
Public Sub Button1_Click() Dim obj As Object For Each obj In FMain.Children If Object.Type(obj) = RadioButton Then obj.Value = False Endif Next End --- Lun 17/12/12, M. Cs. mohar...@gmail.com ha scritto: Da: M. Cs. mohar...@gmail.com Oggetto:

Re: [Gambas-user] Fwd: Re: Paginate doesn't clear page

2012-12-17 Thread Rolf-Werner Eilert
Am 17.12.2012 21:36, schrieb Benoît Minisini: Le 17/12/2012 12:18, Rolf-Werner Eilert a écrit : Benoit, Have you found time to verify this? Am I doing something wrong, or is it a feature? :-) Regards Rolf Maybe we misunderstood there. You must remove the drawing code from the