View Single Post
  #8  
Old 05-20-2006, 03:41 PM
Luigi203 Luigi203 is offline
Hamma Time
Luigi203's Avatar
Join Date: Mar 2003
Location: North East PA
Posts: 285
Luigi203 is on a distinguished road
Send a message via AIM to Luigi203
What the hell, Hachi? It doesnt matter if he has 100 parentheses as long as he closes them up on the other side.

client.e_mail_messages=(((((client.e_mail_messages @ " Message: " @ client.("e_mail_" @ this.i))))));

would do the same thing as


client.e_mail_messages=client.e_mail_messages @ " Message: " @ client.("e_mail_" @ this.i);

To the author, what exactly are you trying to do? if client.e_mail_messages is a string list and you want to add to it use

client.e_mail_messages.add(" Message: " @ client.("e_mail_" @ this.i));

so, it will add to the actual list rather than appending to the end of the last thing in the list.
__________________


CAUTION
Reply With Quote