if(ArrayLen(aLog)){
aLog[ArrayLen(aLog)].text = Trim(Mid(str,start,Len(str2)-start));
}
The above condition would be false. I added a 'else' condition and want to assign 'str' to aLog[ArrayLen(aLog)].text.
something like this:
if(ArrayLen(aLog)){
aLog[ArrayLen(aLog)].text = Trim(Mid(str,start,Len(str2)-start));
}
else
{
'What should I be doing here?'
}
break;
Many thanks again!
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

