View Single Post
  #3 (permalink)  
Old 05-19-2008, 01:50 PM
Graley Graley is offline
Newbie
 
Join Date: Aug 2007
Posts: 5
Default Solution

Thanks Erel, all sorted. Not a bug. It turned ou to be a missing CRT in an IF statement. Maybe the old version didn't pick this out. Very stange. Thanks for the prod though.

Incorrect code:
If X = X Then
Action
ELSE Sms.New1(Number,Message)
Action
END IF

Corrected code:
Incorrect code:
If X = X Then
Action
ELSE
Sms.New1(Number,Message)
Action
END IF
Reply With Quote