DEFINE MAIL PROBLEM

Post Reply
Ollie
Posts: 233
Joined: Sat Dec 30, 2006 6:10 am

DEFINE MAIL PROBLEM

Post by Ollie »

Can anyone explain why I get a 'parse error at MAIL' on the third message?

Code: Select all

PROCEDURE   SENDEMAIL()
   LOCAL oMail

   // This works just fine:
   DEFINE MAIL oMAIL SUBJECT "Message 1 - Sends Fine "+TIME() ;
   TEXT "This is the message "+SDATE(DATE())+' '+TIME() ;
   TO "bill@microsoft.com"

 ACTIVATE MAIL oMail

   DEFINE MAIL oMAIL SUBJECT "Message 2 - Sends Fine "+TIME() ;
   TEXT "This is the message "+SDATE(DATE())+' '+TIME() ;
   TO "bill@microsoft.com" ;
   FROM USER

 ACTIVATE MAIL oMail

   DEFINE MAIL oMAIL SUBJECT "Message 3 - parse error at MAIL"+TIME() ;
   TEXT "This is the message "+SDATE(DATE())+' '+TIME() ;
   TO "bill@microsoft.com" ;
   FILES {"c:\winzip.log","c:\winzip.log"} ;
      FROM USER

 ACTIVATE MAIL oMail
Many thanks
Ollie.

Using:
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6406)
Borland C++ 5.5.1
FWH 9.04 (2009 Apr)
Ollie
Posts: 233
Joined: Sat Dec 30, 2006 6:10 am

Post by Ollie »

Ah ha - Thanks.
Many thanks
Ollie.

Using:
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6406)
Borland C++ 5.5.1
FWH 9.04 (2009 Apr)
Post Reply