Re: [Gambas-user] Feature request: triple-click to select line

2011-03-14 Thread Benoît Minisini
> Is there any possibility of adding a triple-click to select a whole > line of code in the IDE? > I don't think so. But you can select an entire line by clicking inside the margin. Regards, -- Benoît Minisini -- Col

[Gambas-user] Feature request: triple-click to select line

2011-03-14 Thread Zach Smith
Is there any possibility of adding a triple-click to select a whole line of code in the IDE? -- Colocation vs. Managed Hosting A question and answer guide to determining the best fit for your organization - today and in th

Re: [Gambas-user] translating planar coordinates relative to point's angle

2011-03-14 Thread Kevin Fishburne
On 03/14/2011 04:46 AM, Doriano Blengino wrote: > I think that you have too many variables involved... to define a speed > in a plane you need only two coordinates - you should choose between two > methods (or coordinate systems). > > The first one, which seems to fit best, is to choose a direction

[Gambas-user] More debugging bugs

2011-03-14 Thread Jussi Lahtinen
Hi! See attached project. 1 .Click on the button, and try to inspect object inside of StructArr, you will get "StructArr[0]", "No element" which is false. 2. Then, try to inspect D2Arr, you will get "Bad number of dimensions" and "Out of bounds", which are also false. Gambas 3 rev 3647 @ Ubuntu

Re: [Gambas-user] Issue 42 in gambas: In Gambas3 (2.99.0), Line Input hangs up.

2011-03-14 Thread gambas
Comment #2 on issue 42 by jonericn...@gmail.com: In Gambas3 (2.99.0), Line Input hangs up. http://code.google.com/p/gambas/issues/detail?id=42 Sorry, I do not know the meaning of "true terminal". It hangs when I run the command in a "commandline" project, which uses the IDE, of course. Is there

Re: [Gambas-user] translating planar coordinates relative to point's angle

2011-03-14 Thread Doriano Blengino
Kevin Fishburne ha scritto: > I'm disturbed that I couldn't find an answer via Google that wasn't too > complex for my feeble mind to understand (my fault; I suck at math), so > I'm asking here. > > I'm trying to move a point with an angle/direction/vector relative to > its angle. Let's say I have

Re: [Gambas-user] gb3 (rev. 3641) and SDL surfaces

2011-03-14 Thread Kevin Fishburne
On 03/10/2011 05:09 AM, Benoît Minisini wrote: >> I've been experimenting with gb.sdl and found that I could achieve frame >> rates higher than 380 fps at 1920x1080, including alpha channel. This >> involves writing directly to the SDL window/surface with a 1920x1080 >> image loaded from a file, fo

Re: [Gambas-user] translating planar coordinates relative to point's angle

2011-03-14 Thread Kevin Fishburne
On 03/14/2011 02:13 AM, Kevin Fishburne wrote: > I'm trying to move a point with an angle/direction/vector relative to > its angle. Let's say I have these variables: > > Dim a as Single ' Point's angle in degrees. > Dim x as Single ' Point's x coordinate. > Dim y as Single ' Point's y coordinate. >