Announcement

Collapse
No announcement yet.

turn code off after certain date

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • turn code off after certain date

    Is there any way to write in code to work for a certain period. example:
    IF First open > 6/25/2008
    turn off

  • #2
    Re: turn code off after certain date

    var mDate = (year(0)*100+month(0))*100+day(0);
    if (mDate > 20080623) {return;}

    Code doesn't run after June 23, 2008.

    Originally posted by sjsr
    Is there any way to write in code to work for a certain period. example:
    IF First open > 6/25/2008
    turn off

    Comment

    Working...
    X