Re: [Gambas-user] Saving integer array into file

2010-05-18 Thread Fabien Bodard
>> Benoit, is there something about that in the help ? i don't see >> anything about a read or a wirte method :/ > > Yes, for a long time! I've never have to use that function :)... but if i've known its exixtance before, for sur, i used it. >> >> and what is array.bounds exactly ? (i know i'

Re: [Gambas-user] Saving integer array into file

2010-05-18 Thread Benoît Minisini
> Le 18 mai 2010 13:30, Benoît Minisini a écrit : > >> Am 18.05.2010 13:09, schrieb Fabien Bodard: > >> > 2010/5/18 Rolf-Werner Eilert: > >> >> Just had this idea: > >> >> > >> >> DIM myArray AS NEW Integer[] > >> >> > >> >> 'code filling myArray with integer values > >> >> > >> >> File.Save(m

Re: [Gambas-user] Saving integer array into file

2010-05-18 Thread Rolf-Werner Eilert
Am 18.05.2010 13:30, schrieb Benoît Minisini: >> Am 18.05.2010 13:09, schrieb Fabien Bodard: >>> 2010/5/18 Rolf-Werner Eilert: Just had this idea: DIM myArray AS NEW Integer[] 'code filling myArray with integer values File.Save(myArray) Well, this won't

Re: [Gambas-user] Saving integer array into file

2010-05-18 Thread Rolf-Werner Eilert
Am 18.05.2010 15:06, schrieb Fabien Bodard: > Le 18 mai 2010 13:30, Benoît Minisini a écrit : >>> Am 18.05.2010 13:09, schrieb Fabien Bodard: 2010/5/18 Rolf-Werner Eilert: > Just had this idea: > > DIM myArray AS NEW Integer[] > > 'code filling myArray with integer values

Re: [Gambas-user] Saving integer array into file

2010-05-18 Thread Fabien Bodard
Le 18 mai 2010 13:30, Benoît Minisini a écrit : >> Am 18.05.2010 13:09, schrieb Fabien Bodard: >> > 2010/5/18 Rolf-Werner Eilert: >> >> Just had this idea: >> >> >> >> DIM myArray AS NEW Integer[] >> >> >> >> 'code filling myArray with integer values >> >> >> >> File.Save(myArray) >> >> >> >> Well

Re: [Gambas-user] Saving integer array into file

2010-05-18 Thread Benoît Minisini
> Am 18.05.2010 13:09, schrieb Fabien Bodard: > > 2010/5/18 Rolf-Werner Eilert: > >> Just had this idea: > >> > >> DIM myArray AS NEW Integer[] > >> > >> 'code filling myArray with integer values > >> > >> File.Save(myArray) > >> > >> Well, this won't be possible: File.Save only saves strings.

Re: [Gambas-user] Saving integer array into file

2010-05-18 Thread Rolf-Werner Eilert
Am 18.05.2010 13:09, schrieb Fabien Bodard: > 2010/5/18 Rolf-Werner Eilert: >> Just had this idea: >> >> DIM myArray AS NEW Integer[] >> >> 'code filling myArray with integer values >> >> File.Save(myArray) >> >> Well, this won't be possible: File.Save only saves strings. Or is there >> another way

Re: [Gambas-user] Saving integer array into file

2010-05-18 Thread Fabien Bodard
2010/5/18 Rolf-Werner Eilert : > Just had this idea: > > DIM myArray AS NEW Integer[] > > 'code filling myArray with integer values > > File.Save(myArray) > > Well, this won't be possible: File.Save only saves strings. Or is there > another way by somehow copying the integer array into a string and

[Gambas-user] Saving integer array into file

2010-05-18 Thread Rolf-Werner Eilert
Just had this idea: DIM myArray AS NEW Integer[] 'code filling myArray with integer values File.Save(myArray) Well, this won't be possible: File.Save only saves strings. Or is there another way by somehow copying the integer array into a string and saving that instead? Anyway, this would mak