I have a problem using the List & Label components with the Delphi VCL. When I'm accessing the Design
method of the TL20_
object, I get the following error code:
error code -105 (license error)
procedure TForm3.Button1Click(Sender: TObject);
var
llDriver: TL20_;
res: Integer;
begin
llDriver := TL20_.Create(Self);
try
llDriver.Language := ltDefaultLang;
llDriver.LicensingInfo := 'xxxxxx';
res := llDriver.Design(0, WindowHandle, '123', LL_PROJECT_LABEL, '123', False, True);
ShowMessage(llDriver.LlGetErrortext(res));
finally
FreeAndNil(llDriver);
end;
end;
Using the same license key with a Python application on the same PC works fine.
Any suggestions?