Nov 29, 2003 #1 PROKA Well-known member Joined Sep 3, 2003 Messages 249 Location Bucharest Cant I massive read / write from/into the registry ? I have in a form 40 values I wanna store , and I would like to use an array and some cycles, instead of writing 40+40 = 80 lines
Cant I massive read / write from/into the registry ? I have in a form 40 values I wanna store , and I would like to use an array and some cycles, instead of writing 40+40 = 80 lines
Nov 29, 2003 #2 Robby Moderator Joined Nov 17, 2002 Messages 3,461 Location Montreal, Ca. User Rank *Expert* Store the values in one big string and use some delimiter(comma or pipe) to later read the values. (split into an array to read)
Store the values in one big string and use some delimiter(comma or pipe) to later read the values. (split into an array to read)
Nov 29, 2003 #3 PROKA Well-known member Joined Sep 3, 2003 Messages 249 Location Bucharest I have to store strings as well ( nicknames for a Highscore table ) -> what if the user uses the delimiter in his nickname ? Oups :>
I have to store strings as well ( nicknames for a Highscore table ) -> what if the user uses the delimiter in his nickname ? Oups :>
Nov 29, 2003 #4 Robby Moderator Joined Nov 17, 2002 Messages 3,461 Location Montreal, Ca. User Rank *Expert* I wouldnt allow special characters in nicks, or at least pipes, they are least used.
Nov 29, 2003 #5 PROKA Well-known member Joined Sep 3, 2003 Messages 249 Location Bucharest ) my nickname used to be pRokA|GOD
Nov 29, 2003 #6 Robby Moderator Joined Nov 17, 2002 Messages 3,461 Location Montreal, Ca. User Rank *Expert* Whatever, use any character you want.
Nov 30, 2003 #7 PROKA Well-known member Joined Sep 3, 2003 Messages 249 Location Bucharest yeah, got it , thanks