FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour DEFINE MAIL PROBLEM
Posts: 233
Joined: Sat Dec 30, 2006 06:10 AM
DEFINE MAIL PROBLEM
Posted: Fri Jan 05, 2007 07:53 PM
Can anyone explain why I get a 'parse error at MAIL' on the third message?

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)
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: DEFINE MAIL PROBLEM
Posted: Fri Jan 05, 2007 11:19 PM
FILES "c:\winzip.log", "Winzip1.log", "c:\winzip.log", "Winzip2.log" ;


EMG
Posts: 233
Joined: Sat Dec 30, 2006 06:10 AM
DEFINE MAIL PROBLEM
Posted: Sat Jan 06, 2007 07:18 AM

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)

Continue the discussion