Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1892

Summary: Compile TeeImport97 Delphi 7 Indy 10
Product: VCL TeeChart Reporter: christopher ireland <chris>
Component: ExportAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: normal    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=3&t=16632
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description christopher ireland 2017-07-17 08:56:37 EDT
Client reports necessary changes for compiling TeeImport97 to Delphi7:

*****
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}