-
Content Count
92 -
Joined
-
Last visited
Everything posted by ŁukaszDe
-
Version with b is newer. quality.embarcadero,com and cc.embarcadero.com are down...
-
https://cc.embarcadero.com/item/30883 is not working... direct link: http://altd.embarcadero.com//download/radstudio/10.3/delphicbuilder10_3_2_496593b.iso
-
Webinar: What’s New in Delphi, C++Builder, and RAD Studio 10.3.2? https://community.idera.com/developer-tools/b/blog/posts/what-s-new-in-delphi-10-3-2-webinar-next-week http://s608.t.en25.com/e/es?s=608&e=3212415&elqTrackId=65d0dc3c5cdd4756be52277591b686f0&elq=c25618b1ac194292a576b4839d8d5592&elqaid=31246&elqat=1 Presenters: The Embarcadero Product Management Team - Sarina DuPont, Marco Cantu, and David MillingtonSession: Wednesday, Jul 24, 2019, 8:00 AM - 9:00 AM CST Join the Embarcadero Product Management Team to discover new capabilities throughout Delphi, C++Builder, and RAD Studio designed to delight Delphi multi-device developers and C++ Windows Developers. https://register.gotowebinar.com/register/1262173778065437955
-
List on https://quality.embarcadero.com/issues/?filter=-4 is empty...
-
Yes, everything has returned to normal.
-
Stop showing MainForm after load project
ŁukaszDe posted a topic in Tips / Blogs / Tutorials / Videos
Hi, Does anybody know any existing tool with option to disable showing MainForm DFM of project after it open? Thanks. -
Stop showing MainForm after load project
ŁukaszDe replied to ŁukaszDe's topic in Tips / Blogs / Tutorials / Videos
Ok, thanks. When I download a source code from SVN/GIT and then open it in IDE then again MainForm will be showed... A better solution would be to have an option for this in any IDETool eg DDevExtension 🙂 -
Stop showing MainForm after load project
ŁukaszDe replied to ŁukaszDe's topic in Tips / Blogs / Tutorials / Videos
I don't want show MainForm in IDE after open existing project. -
MSBuild stop working after Update Windows to 1903 version (May 2019 Update)
ŁukaszDe posted a topic in General Help
Hi, 2 days ago I updated Windows to new May 2019 Update. After that, msbuild has stopped compiling the program. I had error: Project.dpr(121) Fatal: F2039 Could not create output file 'Project.drf' C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\Bin\CodeGear.Delphi.Targets(157,5): error MSB6006: "dcc" exited with code 1. Done Building Project "Z:\Project1\Project.dproj" (Build target(s)) -- FAILED. Build FAILED. "Z:\Project1\Project.dproj" (Build target) (1) -> (_PasCoreCompile target) -> C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\Bin\CodeGear.Delphi.Targets(157,5): error MSB6006: "dcc" exited wit h code 1. 0 Warning(s) 1 Error(s) Maybe you know some help for this error? -
MSBuild stop working after Update Windows to 1903 version (May 2019 Update)
ŁukaszDe replied to ŁukaszDe's topic in General Help
Delphi 10.3: Microsoft (R) Build Engine w wersji 4.8.3752.0 [Microsoft .NET Framework w wersji 4.0.30319.42000] Delphi XE2: Microsoft (R) Build Engine w wersji 3.5.30729.9135 [Microsoft .NET Framework w wersji 2.0.50727.9145] -
MSBuild stop working after Update Windows to 1903 version (May 2019 Update)
ŁukaszDe replied to ŁukaszDe's topic in General Help
I check it on Delphi 10.3.1 and same command is working but on XE2 is not (using MSBuild). -
MSBuild stop working after Update Windows to 1903 version (May 2019 Update)
ŁukaszDe replied to ŁukaszDe's topic in General Help
No, drive Z is not a problem. It is a VeraCrypt drive. -
MSBuild stop working after Update Windows to 1903 version (May 2019 Update)
ŁukaszDe replied to ŁukaszDe's topic in General Help
I saw it. My env %TEMP% exist: TEMP=C:\Users\Łukasz\AppData\Local\Temp TMP=C:\Users\Łukasz\AppData\Local\Temp I think Microsoft .NET Framework in version 2.0.50727.9145 corrupts... -
MSBuild stop working after Update Windows to 1903 version (May 2019 Update)
ŁukaszDe replied to ŁukaszDe's topic in General Help
No, I've never seen a drf file... I have not any problems with build project using msbuild before last Windows update. -
MSBuild stop working after Update Windows to 1903 version (May 2019 Update)
ŁukaszDe replied to ŁukaszDe's topic in General Help
After Windows May 2019 Update was update KB4495620 which increase version Microsoft .NET Framework from 2.0.50727.9136 to 2.0.50727.9145. On early version (9136) msbuild is working (checked on other computer). -
"Delphi High Performance" eBook free on Packt today.
ŁukaszDe replied to Steffen Nyeland's topic in Tips / Blogs / Tutorials / Videos
I can only open in online reader. -
"Delphi High Performance" eBook free on Packt today.
ŁukaszDe replied to Steffen Nyeland's topic in Tips / Blogs / Tutorials / Videos
When you press link, the book is on the top of page: -
Hi, Do you know how to generate a map file using MSBuil? I try add /p:mapfile=Detailed and this is accepted but map file is not created. When I set option in Linking property of project than map file is created. Command is: msbuild /p:config=Testy;mapfile=Detailed /nologo /target:Build "D:\\Demo\Project.dproj"
-
That's right, I add DCC_MapFile=3 to parameters: msbuild /p:config=Testy;mapfile=Detailed;DCC_MapFile=3 /nologo /target:Build "D:\\Demo\Project.dproj" And the map file was created. Thank you.
-
Very slow access to class parameters by properties
ŁukaszDe posted a topic in Algorithms, Data Structures and Class Design
Hi, I always add properties for private parameters in class with Get and Set methods: TSomething = class private pX: Integer; pY: Integer; function GetX: Integer; procedure SetX(AValue: Integer); function GetY: Integer; procedure SetY(AValue: Integer); public property X: Integer read GetX write SetX; property Y: Integer read GetY write SetY; end; function TSomething.GetX: Integer; begin Result := Self.pX; end; procedure TSomething.SetX(AValue: Integer); begin Self.pX := AValue; end; function TSomething.GetY: Integer; begin Result := Self.pY; end; procedure TSomething.SetY(AValue: Integer); begin Self.pY := AValue; end; But I found a problem with this in Delphi. I attach an example application. Access to class parameter by property with Get is almost 6 times longer than directly access. Why? If you do this in loop for 50000000 objects, than the loop is very sloow... AccessToClassParameters.zip -
Very slow access to class parameters by properties
ŁukaszDe replied to ŁukaszDe's topic in Algorithms, Data Structures and Class Design
Thank you for all the tips. -
Very slow access to class parameters by properties
ŁukaszDe replied to ŁukaszDe's topic in Algorithms, Data Structures and Class Design
Yes, this is the solution. So If I want to use class properties in loops, I need add 'inline' to Get and Set methods? -
I have Delphi XE2 and Rio 10.3.2. Both with FastReport. When you install FastReport from GetIt, it is installed in wrong path. Default path where FastReports are installed is C:\Program Files (x86)\FastReports. The current installation overwrites the files of the last installed version. After that, you can't uninstall both versions. Fast Report should be installed to different directory. XE2: "C:\Program Files (x86)\FastReports\FastReport 4 Embarcadero edition" 10.3: "C:\Program Files (x86)\FastReports\FastReport 6 Embarcadero edition" If you have installed FastReport in C:\Program Files (x86)\FastReports\LibDxx you have to uninstall it first. Where to get the installation? After installation from GetIt, necessary files are in: "C:\Users\Public\Documents\Embarcadero\Studio\20.0\CatalogRepository\Fast_Report_VCL-6.2.1-10.3" Uninstall it and install again in correct directory, never in same with other versions...
-
In Delphi 10.3 or in version before is new ToolBar in Editor: Is possible to hide this ToolBar? Today morning I had option Hide in right mouse button menu which hide toolbar: But after change view to another unit, ToolBar was showing again... https://streamable.com/igpzd Now the Hide option has disappeared,.. I do not know what it involved ... I want hide it because I'm using CnPack which has same ToolBar but more comfortable in use.
-
10.3 How to hide Procedure List ToolBar in Editor
ŁukaszDe replied to ŁukaszDe's topic in Delphi IDE and APIs
Great!