[Gambas-user] starfield

2013-08-17 Thread Jack
Bonjour, Here is a starfield with scrolltext. thank you at Guy Carlier for its examples. http://www.gambasforge.org/code-85-starfield2.html -- Cordialement Jacky Tripoteau -- Get 100% visibility into Java/.NET code wi

Re: [Gambas-user] How to bring forward Gambas server pages? (gbw3 related files who to expose in http)

2013-08-17 Thread Benoît Minisini
Le 18/08/2013 00:32, PICCORO McKAY Lenz a écrit : > Gambas3 now has a new way of programing for basic: Gambas Server Pages. > > I'm glad to see tech like php or jsp but easy to write.. one proble > was How now i expose in http server-like my GSP made? > > i see the gbw binary and the info are very

[Gambas-user] How to bring forward Gambas server pages? (gbw3 related files who to expose in http)

2013-08-17 Thread PICCORO McKAY Lenz
Gambas3 now has a new way of programing for basic: Gambas Server Pages. I'm glad to see tech like php or jsp but easy to write.. one proble was How now i expose in http server-like my GSP made? i see the gbw binary and the info are very lack.. i mean, with JSP/Servlet we use tomcat i mean, with

Re: [Gambas-user] Get one line from text

2013-08-17 Thread Kende Krisztián
> Hi all. > > I need your help. > I cant get one line from text. > > My text is: > > > #!/usr/bin/env xdg-open > > [Desktop Entry] > Version=1.0 > Type=Application > Terminal=false > Name[uk_UA]=Грибоїд > Exec=/Games/Kids/Грибоєд/Griboed_exec > Icon=/Games/Kids/Грибоєд/1857.png > Comment[uk_UA

[Gambas-user] Get one line from text

2013-08-17 Thread abbat81
Hi all. I need your help. I cant get one line from text. My text is: #!/usr/bin/env xdg-open [Desktop Entry] Version=1.0 Type=Application Terminal=false Name[uk_UA]=Грибоїд Exec=/Games/Kids/Грибоєд/Griboed_exec Icon=/Games/Kids/Грибоєд/1857.png Comment[uk_UA]=Грибоїд Name=Грибоїд Comment=Грибо

Re: [Gambas-user] For Each Line in String

2013-08-17 Thread Fabien Bodard
Le 17 août 2013 17:55, "abbat81" a écrit : > > > Dim sPics as astring >dim sline as string > Shell "ls ~/Pictures/" to sPics > > For Each sLine in split(sPics"/n") > Print sLine > Next Ok > > > Fow can I do it? > Thanks > > > > -- > View this message in context: http://gambas.8142.n7.nabble.com/F

Re: [Gambas-user] For Each Line in String

2013-08-17 Thread Fabien Bodard
Le 17 août 2013 22:00, "Fabien Bodard" a écrit : > > > Le 17 août 2013 17:55, "abbat81" a écrit : > > > > > > Dim sPics as astring > >dim sline as string > > > Shell "ls ~/Pictures/" to sPics > > > > For Each sLine in split(sPics, "/n") > > Print sLine > > Next > > Ok > > > > > > > Fow can I do i

[Gambas-user] About coordinates in .FindChild(...) function

2013-08-17 Thread Ru Vuott
Hello, I was trying " .FindChild ( X As Integer, Y As Integer ) As Control " function, I noticed that this function detects and returns any "Child" Object of a its "Parent" Container, only if this Object is positioned at the coordinates .X = 0 and .Y = 0 . So, even if only one of the two coor

Re: [Gambas-user] [idea] Mini-Liux Distrubution Dedicated for running Gambas Program??

2013-08-17 Thread PICCORO McKAY Lenz
From: Patrick > Subject: [Gambas-user] [idea] Mini-Liux Distrubution Dedicated for > > I am wondering is it possible to build a 'very small' linux distrubition > like DamSamllLinux, but with only Gambas support such that each gambas app > can be running in a self-contained 'machine' with a very

Re: [Gambas-user] For Each Line in String

2013-08-17 Thread paulwheeler
Not sure what you wanted to do with the information, but this code will get the directory info, output it to a file, print it to the console, and put it into an array. NOTE: This is an excerpt from the gambas-diskinfo (Version 1.0.33) code written by Demosthenes Koptsis. Sometimes i

Re: [Gambas-user] For Each Line in String

2013-08-17 Thread abbat81
It works if line if full but I need some part of line. Works: FOR EACH Sb IN Elt PRINT Sb NEXT I need: FOR EACH Sb IN Elt PRINT Left(Sb, 5) NEXT It gives me 5 chars of first line only. I should get every 5 chsrs of every line. -- View this message in context: http://gambas.8142.n7.

Re: [Gambas-user] For Each Line in String

2013-08-17 Thread Jussi Lahtinen
http://gambasdoc.org/help/lang/split Maybe by using gb.newline as separator. Jussi On Sat, Aug 17, 2013 at 6:54 PM, abbat81 wrote: > > Dim sPics as astring > > Shell "ls ~/Pictures/" to sPics > > For Each Line in sPics > Print Line > Next > > > Fow can I do it? > Thanks > > > > -- > View this

[Gambas-user] For Each Line in String

2013-08-17 Thread abbat81
Dim sPics as astring Shell "ls ~/Pictures/" to sPics For Each Line in sPics Print Line Next Fow can I do it? Thanks -- View this message in context: http://gambas.8142.n7.nabble.com/For-Each-Line-in-String-tp42889.html Sent from the gambas-user mailing list archive at Nabble.com.

Re: [Gambas-user] Empty PDF problem - maybe Cairo too slow?

2013-08-17 Thread Rolf Schmidt
Hi Rolf-Werner > When the whole thing runs from cron, it will deliver 0 Byte PDFs, but > the originals on the system are fine (the copies remain in the > directory). The mailing system does not see any error. Problems with cron usually result from missing pathes. Cron does not starts a shell wi