Re: [Gambas-user] Please help with directory problem

2008-11-01 Thread Ron_1st
On Friday 31 October 2008, Kari Laine wrote: > On Fri, Oct 31, 2008 at 11:52 PM, Kari Laine <[EMAIL PROTECTED]> wrote: > > > On Fri, Oct 31, 2008 at 2:57 PM, Benoit Minisini < > > [EMAIL PROTECTED]> wrote: > > > >> On vendredi 31 octobre 2008, Kari Laine wrote: > >> > Thanks Benoit ! > >> > >> I o

Re: [Gambas-user] Please help with directory problem

2008-11-01 Thread Kari Laine
On Sat, Nov 1, 2008 at 9:19 AM, Doriano Blengino < [EMAIL PROTECTED]> wrote: > Kari Laine ha scritto: > Anyway, why don't you use a simpler "mkdir -p "? > I didn't remember it ? Thanks > I read your other subsequent message too, about the error, and noticed > you solved. > So, you *can* wor

Re: [Gambas-user] Please help with directory problem

2008-11-01 Thread Doriano Blengino
Kari Laine ha scritto: > On Fri, Oct 31, 2008 at 2:57 PM, Benoit Minisini < > [EMAIL PROTECTED]> wrote: > > >> On vendredi 31 octobre 2008, Kari Laine wrote: >> >>> Thanks Benoit ! >>> >> I often forget the WAIT keyword after a SHELL or EXEC command, so now I >> think >> this syntax

Re: [Gambas-user] Please help with directory problem

2008-10-31 Thread Kari Laine
On Fri, Oct 31, 2008 at 11:52 PM, Kari Laine <[EMAIL PROTECTED]> wrote: > On Fri, Oct 31, 2008 at 2:57 PM, Benoit Minisini < > [EMAIL PROTECTED]> wrote: > >> On vendredi 31 octobre 2008, Kari Laine wrote: >> > Thanks Benoit ! >> >> I often forget the WAIT keyword after a SHELL or EXEC command, so

Re: [Gambas-user] Please help with directory problem

2008-10-31 Thread Kari Laine
On Fri, Oct 31, 2008 at 2:57 PM, Benoit Minisini < [EMAIL PROTECTED]> wrote: > On vendredi 31 octobre 2008, Kari Laine wrote: > > Thanks Benoit ! > > I often forget the WAIT keyword after a SHELL or EXEC command, so now I > think > this syntax was not a really good idea. > > I should have used the

Re: [Gambas-user] Please help with directory problem

2008-10-31 Thread Doriano Blengino
Benoit Minisini ha scritto: > On vendredi 31 octobre 2008, Kari Laine wrote: > >> Thanks Benoit ! >> > > I often forget the WAIT keyword after a SHELL or EXEC command, so now I think > this syntax was not a really good idea. > > I should have used the opposite syntax, i.e. a keyword like

Re: [Gambas-user] Please help with directory problem

2008-10-31 Thread Benoit Minisini
On vendredi 31 octobre 2008, Kari Laine wrote: > Thanks Benoit ! I often forget the WAIT keyword after a SHELL or EXEC command, so now I think this syntax was not a really good idea. I should have used the opposite syntax, i.e. a keyword like "BACKGROUND" or "DO NOT WAIT"! -- Benoit Minisini

Re: [Gambas-user] Please help with directory problem

2008-10-31 Thread Kari Laine
Thanks Benoit ! - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event

Re: [Gambas-user] Please help with directory problem

2008-10-31 Thread Doriano Blengino
Benoit Minisini ha scritto: > On jeudi 30 octobre 2008, Kari Laine wrote: > >> >> crtdir = crtdir &/ hak2 >> PRINT crtdir >> SHELL "mkdir " & crtdir >> > . >/|\ > | > WAIT ?

Re: [Gambas-user] Please help with directory problem

2008-10-30 Thread Benoit Minisini
On jeudi 30 octobre 2008, Kari Laine wrote: > Hi All, > > still making my homebrew backup-program. Now I have tried to get a simple > thing to work for something like 5 hours. Following is a test routine which > does not work. It's idea is to create directory structure given in variable > SHak insi

Re: [Gambas-user] Please help with directory problem

2008-10-30 Thread M0E Lnx
You could try defining a integer variable to keep track of your array Here is your code with a slight modification... not tested... but try it PUBLIC SUB Button2_Click() DIM sHak AS String DIM haks AS NEW String[300] DIM hak2 AS String DIM crtdir AS String DIM i as Integer sHak = "/home/kari/ul

[Gambas-user] Please help with directory problem

2008-10-30 Thread Kari Laine
Hi All, still making my homebrew backup-program. Now I have tried to get a simple thing to work for something like 5 hours. Following is a test routine which does not work. It's idea is to create directory structure given in variable SHak inside directory given by variable crtdir. Any ideas why it