You are a GENIUS man! That code rocks, I wouldn't know how to do this without your help. You are a star. Just one small problem, the comments column sometimes doesn't store the timestamp. I went through your code. The while condition in the above mentioned situation would be false so the code in the else part would be executed.

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]

Reply via email to