dimanche 28 mars 2021

Delphi 10.3 CE data from websites [duplicate]

(MY CODE)

  TForm4 = class(TForm)
    Button1: TButton;
    Memo1: TMemo;
    IdHTTP1: TIdHTTP;
    IdSSLIOHandlerSocketOpenSSL1: TIdSSLIOHandlerSocketOpenSSL;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form4: TForm4;

  idhttp : TIdHTTP ;

implementation

{$R *.dfm}

procedure TForm4.Button1Click(Sender: TObject);

begin

   Memo1.Text := idhttp1.Get('https://stackoverflow.com/') ;

end;

end.

(MY ERROR)

'Could not load SSL library'

(I don't know much bout Delphi just trying to read from a website for Grade 12 PAT. Please Help)




Aucun commentaire:

Enregistrer un commentaire