Re: [Gambas-user] ncurses component

2012-03-26 Thread Demosthenes Koptsis
additionally ncurses are usefull for apps which run in a remote ssh console. That's why admins love these apps. They can have gui apps without running X. Στις 26/3/2012 18:38, ο/η tobi έγραψε: > On Mon, 26 Mar 2012, Rolf-Werner Eilert wrote: >> Am 25.03.2012 14:42, schrieb tobi: >>> Benoît, >>>

Re: [Gambas-user] ncurses component

2012-03-26 Thread Demosthenes Koptsis
Goodmorning to all in the list, ncurses are very usefull for profesionals which work as admins with dedicated servers and want a gui style for their terminal. when i was admin i used iptraf which is a monitoring tool writen in ncurses. Think that monitoring tools (htop), admin tools (yast) are

Re: [Gambas-user] How to download a file?

2012-03-26 Thread Emil Lenngren
See here: http://gambasdoc.org/help/comp/gb.net.curl/httpclient?v3 2012/3/26 abbat > > I have a file on: > www.mydomain.com/test > > I tried : > > > sSourcePath = "http://mydomain"; > sCopyPath = User.Home & "/Test/" > Copy sSourcePath & "test" To sCopyPath & "test" > > but "File or Directory do

[Gambas-user] How to download a file?

2012-03-26 Thread abbat
I have a file on: www.mydomain.com/test I tried : sSourcePath = "http://mydomain"; sCopyPath = User.Home & "/Test/" Copy sSourcePath & "test" To sCopyPath & "test" but "File or Directory does not exist" How to download a file? Thanks -- View this message in context: http://old.nabble.com

Re: [Gambas-user] Delete sentance between words in a file.

2012-03-26 Thread Emil Lenngren
Maybe you want to use a regular expression? 2012/3/26 sundar j > How do i delete a sentence/line between two matching words? For example i > have a long paragraph starting with ABC-Start and ending with XYZ-End. I > need to delete all the words including ABC-Start & XYZ-End. I have gone > throug

[Gambas-user] Delete sentance between words in a file.

2012-03-26 Thread sundar j
How do i delete a sentence/line between two matching words? For example i have a long paragraph starting with ABC-Start and ending with XYZ-End. I need to delete all the words including ABC-Start & XYZ-End. I have gone through the gambas documentation and found replace string function. However i

Re: [Gambas-user] ncurses component

2012-03-26 Thread tobi
On Mon, 26 Mar 2012, Rolf-Werner Eilert wrote: > > Am 25.03.2012 14:42, schrieb tobi: > > Benoît, > > > > do you think an ncurses component would be useful? i abandoned the X server > > with the beginning of > > the year and when i noticed that i would need a console ide for gambas, i > > began

Re: [Gambas-user] ncurses component

2012-03-26 Thread Rolf-Werner Eilert
Am 25.03.2012 14:42, schrieb tobi: > Benoît, > > do you think an ncurses component would be useful? i abandoned the X server > with the beginning of > the year and when i noticed that i would need a console ide for gambas, i > began writing one (cut > down to my personal needs of course) using n

Re: [Gambas-user] ncurses component

2012-03-26 Thread Fabien Bodard
2012/3/25 tobi : > Benoît, > > do you think an ncurses component would be useful? i abandoned the X server > with the beginning of > the year and when i noticed that i would need a console ide for gambas, i > began writing one (cut > down to my personal needs of course) using ncurses library. as

Re: [Gambas-user] Gridview and Menu Event

2012-03-26 Thread Benoît Minisini
Le 26/03/2012 09:48, Bill-Lancaster a écrit : > > A right click on a row in a gridview control always returns Row=0. > A left click produces the correct row. > If the row is first left clicked, then right clicked the correct row value > is returned. > > Gambas3, Ubuntu 12.04, KDE 4.8.1 It should b

[Gambas-user] Gridview and Menu Event

2012-03-26 Thread Bill-Lancaster
A right click on a row in a gridview control always returns Row=0. A left click produces the correct row. If the row is first left clicked, then right clicked the correct row value is returned. Gambas3, Ubuntu 12.04, KDE 4.8.1 -- View this message in context: http://old.nabble.com/Gridview-and-