-
Content Count
3406 -
Joined
-
Last visited
-
Days Won
113
Lars Fosdal last won the day on August 23
Lars Fosdal had the most liked content!
Community Reputation
1789 ExcellentTechnical Information
-
Delphi-Version
Delphi 12 Athens
Recent Profile Visitors
-
Buying a mini pc to install Delphi
Lars Fosdal replied to Alberto Paganini's topic in Tips / Blogs / Tutorials / Videos
Same reasons that Anders mentioned. Also, Amazon has a brutal grip on the market, and is killing off the competition. For books, I've opted to pay more and order them from a local bookstore. -
New mem manager test using indy http, json, memtables, etc
Lars Fosdal replied to RDP1974's topic in RTL and Delphi Object Pascal
Normally, it would be by editing the first post. I modified the topic for you. -
New mem manager test using indy http, json, memtables, etc
Lars Fosdal replied to RDP1974's topic in RTL and Delphi Object Pascal
@RDP1974 Something like "New mem manager test using indy http, json, memtables, etc" -
Does it always fail on the same parameter? I'd probably do it like this, but it depends on the declaration and description of the GetOptParameter method. var FNameOut: AnsiString; begin ... FNameOut := UTF8Encode(ParamName); if FDSBase.GetOptParameter(0, FieldNo, @FNameOut, ParamType, ...
-
New mem manager test using indy http, json, memtables, etc
Lars Fosdal replied to RDP1974's topic in RTL and Delphi Object Pascal
@RDP1974 - Please change the title of the post to reflect the content - "new test" does not inform those that read the list of topics -
Buying a mini pc to install Delphi
Lars Fosdal replied to Alberto Paganini's topic in Tips / Blogs / Tutorials / Videos
These days I avoid shopping at Amazon. The new MacMinis look amazing - but yeah, the Apple Tax is brutal. -
Reduced performance with multiple threads may have many reasons, suce as race conditions, lock contentions, cache depletion, etc.
-
I've never tried anything similar, so I can't really pinpoint the underlying problem. Any suggestions, @Dave Nottage?
-
Are you targeting 32-bit or 64-bit Android?
-
https://docwiki.embarcadero.com/RADStudio/Athens/en/Android_Devices_Supported_for_Application_Development#Intel-based_Android_Devices recommends a couple of apps that can verify the capabilties of your Android device.
-
Buying a mini pc to install Delphi
Lars Fosdal replied to Alberto Paganini's topic in Tips / Blogs / Tutorials / Videos
@dummzeuch - I think it is commendable to do your testing on a low powered setup. If it works satisfactory there, it will rock on higher end gear. -
Do you need an ARM64 compiler for Windows?
Lars Fosdal replied to Lars Fosdal's topic in Cross-platform
uncertainty, doubt - Is it unthinkable that the codegen would be scheduled for improvements when adding support for Windows for ARM? -
tParallelArray and interfaces
Lars Fosdal replied to A.M. Hoornweg's topic in RTL and Delphi Object Pascal
@A.M. Hoornweg It is always helpful to indicate what kind of error you get, and where you get it. -
Do you need an ARM64 compiler for Windows?
Lars Fosdal replied to Lars Fosdal's topic in Cross-platform
Less hearsay/leaks - more acknowledged facts, please. -
https://learn.microsoft.com/en-us/windows/win32/api/securitybaseapi/nf-securitybaseapi-gettokeninformation BOOL GetTokenInformation( [in] HANDLE TokenHandle, [in] TOKEN_INFORMATION_CLASS TokenInformationClass, [out, optional] LPVOID TokenInformation, [in] DWORD TokenInformationLength, [out] PDWORD ReturnLength ); TokenInformationLength should be the size of the TokenInformationClass?