Compile TeeImport97 Delphi 7 Indy 10

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Jimbo
Newbie
Newbie
Posts: 1
Joined: Wed May 17, 2017 12:00 am

Compile TeeImport97 Delphi 7 Indy 10

Post by Jimbo » Sun Jul 16, 2017 5:06 pm

TeeImport97 would not compile in Delphi 7 with Indy 10

I changed the following in procedure procedure TDataImport.ImportFromURL(const AURL: String);

{$IFDEF D9}
LHandler : TIdSSLIOHandlerSocketOpenSSL;
{$ELSE}
{$IFDEF D7}
// { JJD - Change for latest Indy } LHandler : TIdSSLIOHandlerSocket;
LHandler : TIdSSLIOHandlerSocketOpenSSL;

{$ENDIF}

{$IFDEF D9}
LHandler:=TIdSSLIOHandlerSocketOpenSSL.Create(nil);
{$ELSE}
// { JJD - Change for latest Indy } LHandler:=TIdSSLIOHandlerSocket.Create(nil);
LHandler:=TIdSSLIOHandlerSocketOpenSSL.Create(nil);
{$ENDIF}

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: Compile TeeImport97 Delphi 7 Indy 10

Post by Christopher » Mon Jul 17, 2017 12:57 pm

Thank you very much for reporting this to us. I have added it to our issue tracking system with id=1892.
Best Regards,
Christopher Ireland / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Instructions - How to post in this forum

Post Reply