Re: [Gambas-user] 2 console questions.

2014-03-17 Thread Γιώργος Κ
> > From my long-years experience with Suse, I usually have the developer > tools (not only C compiler, but developer tools for qt and gtk) > installed. Then I compile Gambas myself, and most libraries are already > there. > > Rolf > > THANKS A LOT Rolf, for your help!!! :-) Installation problem

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread ISS Boss
He already has a space between them. Check the quoted strings closely. RICHARD WALKER wrote, On 03/17/2014 04:32: Do you need a space between "mkdir" & "example"? -- Learn Graph Databases - Download FREE O'Reilly

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread Jack
Le 17/03/2014 12:35, Tobias Boege a écrit : > On Mon, 17 Mar 2014, Jorge Carri?n wrote: >> This >> >> ftpc.Exec(["MKD " & "newfoldername"]) >> >> Works for me. >> Hope this helps. > > Yeah. You must know that the program "ftp" lets you enter commands which > don't appear in the FTP specification. I

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread Jack
Le 17/03/2014 11:26, Jorge Carrión a écrit : > This > > ftpc.Exec(["MKD " & "newfoldername"]) > > Works for me. > Hope this helps. > Regards Ah ? mkd instead of mkdir. it's work for me too now. Thank's Jorge -- Learn Gra

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread Tobias Boege
On Mon, 17 Mar 2014, Jorge Carri?n wrote: > This > > ftpc.Exec(["MKD " & "newfoldername"]) > > Works for me. > Hope this helps. Yeah. You must know that the program "ftp" lets you enter commands which don't appear in the FTP specification. It then maps these strings to the actual commands, like

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread Jorge Carrión
This ftpc.Exec(["MKD " & "newfoldername"]) Works for me. Hope this helps. Regards 2014-03-17 8:11 GMT+01:00 Jack : > Hello all, > > is somebody know how create a directory with Ftpclient. > I use this code : > > Dim Cmdmk As New String[] > Cmdmk = ["mkdir " & "example"] > Ftpclient.Exec(Cmdmk)

Re: [Gambas-user] 2 console questions.

2014-03-17 Thread Rolf-Werner Eilert
Stop! Forget about getch(), that's a C function, of course... Try something like this: PUBLIC SUB Application_Read() DIM t$ AS String PRINT "hello there" READ #LAST, t$, -256 't$ = READ -256 IF t$ <> "" THEN PRINT t$ & " : "; END IF txt = txt & t$ SELECT

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread RICHARD WALKER
Do you need a space between "mkdir" & "example"? -- Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed le

Re: [Gambas-user] 2 console questions.

2014-03-17 Thread Rolf-Werner Eilert
Now I will answer to your original questions: Am 15.03.2014 01:03, schrieb Γιώργος Κ: > Hi! :-) > Thank you very much for this wonderful project! > > I just installed it and giving it a try. > I have 2 questions, console programming related. > > 1) Is there any command Input-like, that allows for

Re: [Gambas-user] 2 console questions.

2014-03-17 Thread Rolf-Werner Eilert
Am 16.03.2014 22:59, schrieb Γιώργος Κ: >> >> These missing components are non-critical to the functioning of Gambas. If >> you don't plan to use them, you don't need to compile them. >> >> If you want them anyways, look at the link I gave you in the previous mail. >> There you find the dependenc

[Gambas-user] Create directory with ftpclient

2014-03-17 Thread Jack
Hello all, is somebody know how create a directory with Ftpclient. I use this code : Dim Cmdmk As New String[] Cmdmk = ["mkdir " & "example"] Ftpclient.Exec(Cmdmk) I got an error 500 (unknow command) NB : In a console ftp, mkdir example, works. any suggestions would be greatly appreciated Jac