Which Delphi-Version
Brought to you by:
tk1065
Which Delphi-Version should I use to compile LDAPAdmin?
I tried with Delphi2010 (failed as String-helper "StartsWith" is used in Config.pas - among other errors.
Then I tried with Rad Studio 10.4 - here it has issues with PCCERT_CONTEXT in Cert.pas.
Fixed by changing "uses" order to
uses WinLdap, Windows, wcrypt2;
Then it fails compiling Ldif.pas in line 417, PBytes vs Pointer...
Before I do that over and over: Which Delphi version should be used to compile it?
Thanks! R.
Anonymous
I'm using Delphi 10.3 Community Edition. I fixed the compile error by adding a cast to the second arg in line 417.
My Version:
PutLine('dn', PBytes(@Entry.utf8dn[1]), Length(Entry.utf8dn));