Jump to content

ŁukaszDe

Members
  • Content Count

    92
  • Joined

  • Last visited

Everything posted by ŁukaszDe

  1. ŁukaszDe

    Delphi 10.3 Update 2 available

    Version with b is newer. quality.embarcadero,com and cc.embarcadero.com are down...
  2. ŁukaszDe

    Delphi 10.3 Update 2 available

    https://cc.embarcadero.com/item/30883 is not working... direct link: http://altd.embarcadero.com//download/radstudio/10.3/delphicbuilder10_3_2_496593b.iso
  3. ŁukaszDe

    10.3.2 as next or waiting for 10.4?

    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
  4. ŁukaszDe

    quality embaradero.com is empty

    List on https://quality.embarcadero.com/issues/?filter=-4 is empty...
  5. ŁukaszDe

    quality embaradero.com is empty

    Yes, everything has returned to normal.
  6. Hi, Does anybody know any existing tool with option to disable showing MainForm DFM of project after it open? Thanks.
  7. 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 🙂
  8. I don't want show MainForm in IDE after open existing project.
  9. 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?
  10. 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]
  11. I check it on Delphi 10.3.1 and same command is working but on XE2 is not (using MSBuild).
  12. No, drive Z is not a problem. It is a VeraCrypt drive.
  13. 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...
  14. No, I've never seen a drf file... I have not any problems with build project using msbuild before last Windows update.
  15. 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).
  16. I can only open in online reader.
  17. When you press link, the book is on the top of page:
  18. ŁukaszDe

    MSBuild and genearating MapFile

    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"
  19. ŁukaszDe

    MSBuild and genearating MapFile

    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.
  20. 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
  21. Yes, this is the solution. So If I want to use class properties in loops, I need add 'inline' to Get and Set methods?
  22. ŁukaszDe

    CE Tokyo and Rio and FastReport.

    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...
  23. 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.
×