Re: [Gambas-user] The define style of many element string array

2009-06-26 Thread Jussi Lahtinen
I recommend to write your data to text file and read it from there to String[]. http://gambasdoc.org/help/lang/open Jussi On Fri, Jun 26, 2009 at 06:43, Simonart Dominique wrote: > Steven James Drinnan a écrit : >> As far as I know just one by one. Write one line by one line. >> >> ss[0] = "j

Re: [Gambas-user] The define style of many element string array

2009-06-25 Thread Simonart Dominique
Steven James Drinnan a écrit : > As far as I know just one by one. Write one line by one line. > > ss[0] = "jkl" > ss[1] = "9080|" > ss[2] = "jim" > ss[3] = "ren" > ss[4] = "mu8" > > I may be wrong and others can give there 2 cents worth. > > Steven > > > On Thu, 2009-06-25 at 15:40 -0700, Swe

Re: [Gambas-user] The define style of many element string array

2009-06-25 Thread Steven James Drinnan
As far as I know just one by one. Write one line by one line. ss[0] = "jkl" ss[1] = "9080|" ss[2] = "jim" ss[3] = "ren" ss[4] = "mu8" I may be wrong and others can give there 2 cents worth. Steven On Thu, 2009-06-25 at 15:40 -0700, Swee Kwang Tan wrote: > Dear Sir, > Thank you for your readin

[Gambas-user] The define style of many element string array

2009-06-25 Thread Swee Kwang Tan
Dear Sir, Thank you for your reading. I have a string array, there is many element string. like this dim ss as string[] = ["jkl", "9080|", "jim", "ren", "mu8", "vcnm", "m83d", "m09nc", "n83f", "iiop'", "qiop"..] a longl long line, it have 65 sub-string. How do I write it smart ? If someone