-
Content Count
92 -
Joined
-
Last visited
Everything posted by ŁukaszDe
-
Links to Web installer and ISO are available in https://my.embarcadero.com
-
Links to Web installer and ISO are available in https://my.embarcadero.com
-
Hi I found today a problem with IsZero method: Here is comparison last version of D11 and D12:
-
Right, Watch list showing False but in code it is entering to if statement with IsZero(czas_przejazdu, 1e-3) where czas_przejazdu = 0.
-
FYI - Several Embarcadero services are currently unavailable
ŁukaszDe replied to Keesver's topic in General Help
Thanks, they send me a link to the installer. -
FYI - Several Embarcadero services are currently unavailable
ŁukaszDe replied to Keesver's topic in General Help
Do you know how can I install FastReport-2023.3 for D12 without GetIt? -
Delphi 12 Athens is with us few weeks but still is not on profil list.
-
Why does Delphi 12 marginally bloat EXE file size compared to 11.1?
ŁukaszDe replied to PaulM117's topic in RTL and Delphi Object Pascal
@PaulM117 If size of exe file is important for you, try Upx https://upx.github.io. For my project, Upx made 12MB exe file from 42 MB. -
Here are the current prices for Rad Studio: https://www.embarcadero.com/app-development-tools-store/rad-studio
-
11.2 Pre-Upgrade Checklist / back out plan
ŁukaszDe replied to SwiftExpat's topic in Delphi IDE and APIs
Why can't I have 11.1 and 11.2? I have installed 10.3 and 10.4 versions. -
Ohh, right!
-
Time to add 11.1 version 🙂
-
Someone asked the same question on the stackoverflow: https://stackoverflow.com/questions/58969711/how-to-use-front-and-back-camera-at-the-same-time
-
@Daniel 11 Alexandria 😉 (versions before have names)
-
Someone could upload precompiled version here: https://github.com/DelphiPraxis/DDevExtensions
-
It is time to add new version 11 to Delphi-Version list :).
-
Can someone prepare version 2.89 for Delphi 11?
-
Maybe same problem: https://quality.embarcadero.com/browse/RSP-32793
-
@emailx45 it will not work for new project or existed but without *.dsk file. I asked about it here:
-
@Marco Cantu Project with 1,5 milion line of code. Compilation in 10.3.3 with IdeFixPack = 38s: I do one test, I turned off only patch UnitFindByAlias. Time of compilation = 1.55min Commands to test it for others: Option in Project > Options > Building > Delphi Compiler > Unit Aliases is empty in my project.
-
1,5M lines of code. I'm still on 103.3 😞 @jbg: From IdeFixPack probably we need just these patches Compiler.Optimization Compiler.BackgroundCompilerFileExists Compiler.DirectorySearch; Compiler.UnitFindByAlias Compiler.CacheControl Compiler.CompareFileName
-
You are not alone... report in topic: https://quality.embarcadero.com/browse/RSP-30910
-
How to extend/add helpers to for record function?
ŁukaszDe replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
One more, add const for argument aName. -
I have unit in subfolder Forms. In this unit on beginnig I have {$Include ../definitions} File definitions.pas is in main folder. Should I use '..\' in directive Include or not? Is it help to faster find file definitions.pas by compiler? It works with and without. RadStudio accept '..\definitions' and '../definitions' too but Pascal Analyzer only '..\definitions'.
-
http://docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/HelpUpdate2/EN/html/devcommon/compdirsincludefile_xml.html There is also written: So should be a path to included file?