Re: [Gambas-user] ListView with spaces help

2011-01-29 Thread Michael
SInce a SHELL command must exclude spaces then put it into your listview without spaces. If you want to include spaces for readability then remove them when you pass to SHELL: ListView.Current.text.Replace(" ", "") Regards Michael On 30/01/11 06:17, Nicolas Koch wrote: > I have a populated Lis

Re: [Gambas-user] Problems with new feature of gambas IDE

2011-01-29 Thread Benoît Minisini
> Hi! > Gambas IDE seems to automatically expand sentences like this "If a=b then" > to "If a = b then", even when you are in middle of writing this sentence. > This makes writing hard because expanding doesn't move cursor accordingly, > example if you try to write: > "If a=true then" you got: > "I

[Gambas-user] New IconView

2011-01-29 Thread Benoît Minisini
Hi, The old native IconView has been finally replaced by a new one entirely written in Gambas. The only missing feature at the moment is icon renaming. It will be implemented soon. Moreover, that new IconView seems to indirectly make the interpreter crash at program exit. A new bug to track a

Re: [Gambas-user] Problems with new feature of gambas IDE

2011-01-29 Thread Bruce Bruen
On Thursday, January 27, 2011 01:43:35 am Benoît Minisini wrote: > > Hi! > > Gambas IDE seems to automatically expand sentences like this "If a=b > > then" to "If a = b then", even when you are in middle of writing this > > sentence. This makes writing hard because expanding doesn't move cursor > >

[Gambas-user] Gambas3

2011-01-29 Thread DLM
Hello! But when you release Gambas 3 final? We're stamping! -- Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! Finally, a world-class log management solution at an even better price-free! Download usin

Re: [Gambas-user] ListView with spaces help

2011-01-29 Thread Jussi Lahtinen
I'm not sure what you are trying to do. If you send text "this is test", then "this" is considered as command and rest as parameters. Also you cannot give command for Exec with spaces. http://gambasdoc.org/help/lang/exec Can you send your project to illustrate your problem? Jussi On Sat, Jan 2

[Gambas-user] ListView with spaces help

2011-01-29 Thread Nicolas Koch
I have a populated ListView and I want to run commands from the list, but the list items with spaces won't work in SHELL or EXEC. Message.Info(ListView.Current.Text) will return the list item with spaces as it should ie. "this is test" however when I go to EXEC [ListView.Current.Text] or SHELL L

[Gambas-user] Issue 21 in gambas: Button.Default and Button.Cancel does not work with GTK+

2011-01-29 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 21 by sot...@gmail.com: Button.Default and Button.Cancel does not work with GTK+ http://code.google.com/p/gambas/issues/detail?id=21 1) Describe the problem. When you hit

Re: [Gambas-user] Is posible to Draw an Arc (instead of pies) with Draw.circle ?

2011-01-29 Thread Iñigo Zuluaga
Thanks El vie, 28-01-2011 a las 14:02 +0100, Benoît Minisini escribió: > > > I'm making a program that needs to draw arcs. > > > (An editor and Viewer of Gcode routes). > > > I'm trying with: > > > Draw.Circle (X, Y, R, AngStart, AngEnd) > > > but I can not draw only the arc (not radius). > > > Is