
05-20-2006, 03:41 PM
|
|
Hamma Time
|
 |
Join Date: Mar 2003
Location: North East PA
Posts: 285
|
|
|
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. |
|
|
|