Jul 24, 2004 #1 solex Programmer Feb 28, 2003 91 GB Hello i want to do this: userSlot?_so.data.name = bob; OR name = userSlot?.data.name; BUT i want the ? to be replaced with the number in , userSlotID , how do i do this? thanx in advance solex
Hello i want to do this: userSlot?_so.data.name = bob; OR name = userSlot?.data.name; BUT i want the ? to be replaced with the number in , userSlotID , how do i do this? thanx in advance solex
Jul 26, 2004 #2 wangbar Programmer Jul 23, 2001 1,906 GB Try these (where ? is a number): name = eval('userSlot'+?+'.data.name'); or name=['userSlot'+i].data.name Upvote 0 Downvote
Try these (where ? is a number): name = eval('userSlot'+?+'.data.name'); or name=['userSlot'+i].data.name