Jump to content
Mark Lobanov

ICS 8.67 & Delphi 2010

Recommended Posts

unit OverbyteIcsMailQueue

constructor TIcsMailQueue.Create(Aowner: TComponent);
begin
    inherited;

...

{$IFDEF UNICODE}
    FBodyText.WriteBOM := False;  { V8.67 }
{$ENDIF UNICODE}
    FMailServers := TMailServers.Create(Self);
...

end;

procedure TIcsMailQueue.SaveQuHdrs;
...
{$IFDEF UNICODE}
    QueueLines.WriteBOM := False;  { V8.67 }
{$ENDIF UNICODE}
...

[DCC Error] OverbyteIcsMailQueue.pas(1464): E2003 Undeclared identifier: 'WriteBOM'
[DCC Error] OverbyteIcsMailQueue.pas(2243): E2003 Undeclared identifier: 'WriteBOM'

Share this post


Link to post

WriteBOM is a TStringList method, I guess it was introduced some time after Delphi 2010, will have to investigate when. 

 

Angus

 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×