Thread: Amazing News EA
View Single Post
  #12 (permalink)  
Old 09-27-2007, 11:52 PM
ralph.ronnquist's Avatar
ralph.ronnquist ralph.ronnquist is offline
Senior Member
 
Join Date: Oct 2006
Posts: 280
ralph.ronnquist is on a distinguished road
I believe you would want a disjunction rather than conjunction, i.e., like:
PHP Code:
If (Month()!=NMonth || Day()!=NDay) { .... 
In words, the condition is if either it is the wrong month, or it is the wrong day (of the right month), then ...
Reply With Quote