keko2005
11-09-2005, 12:53 PM
hey guys, im not sure how to explain this, so ill do the best i can.
A user will be prompted to input the number of, lets say columns. the user then enters 3. then a for loop will distribute 3 rows of 5 text fields.
so it will look something like this:
(* = text fields )
r1 = * * * * *
r2 = * * * * *
r3 = * * * * *
when the user finishes filling out the fileds, i then need to turn each row into one string. so all the fields in row 1, will become one string. String str1 = * + * + * + * + *;
same goes for the other rows. now when each row is converted to a string i need it to be stored in array. i can take care of the array part. its turing each one into a string that troubles me, because i dont know how to identify each field in the row. can someone help me out? thanks
A user will be prompted to input the number of, lets say columns. the user then enters 3. then a for loop will distribute 3 rows of 5 text fields.
so it will look something like this:
(* = text fields )
r1 = * * * * *
r2 = * * * * *
r3 = * * * * *
when the user finishes filling out the fileds, i then need to turn each row into one string. so all the fields in row 1, will become one string. String str1 = * + * + * + * + *;
same goes for the other rows. now when each row is converted to a string i need it to be stored in array. i can take care of the array part. its turing each one into a string that troubles me, because i dont know how to identify each field in the row. can someone help me out? thanks