The actual example is
If ( ToDay(Time[0]) > 20080915)
// Do something
Somehow the way I used it, I'm getting this error:
The name 'Today' does not exist in the current context.
Here's my code:
protectedoverridevoid OnBarUpdate()
{
If ( ToDay(Time[0]) > 20080915)
Print("It works");
else
Print("It doesn't work");
}

Comment