Jump to content

Cristian Peța

Members
  • Content Count

    329
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Cristian Peța

  1. Cristian Peța

    Delphi 11.1 compiled under MacOS Ventura

    Just compiling is not an issue because it doesn't need a Mac. Getting SDKs, debugging, signing, running can be but I don't know what from this is not working,
  2. Cristian Peța

    Delphi 11.1 compiled under MacOS Ventura

    From docwiki: "macOS Ventura support require RAD Studio 11.3" https://docwiki.embarcadero.com/PlatformStatus/en/Main_Page#cite_note-11.3-1
  3. Custom Styles? They are so slow now.
  4. Cristian Peța

    Async/Await with updating visual controls

    But all the time you need to have in mind that Queue will execute code later and avoid using in that code some objects or whatever if there is a chance they will not be there when the code executes.
  5. I use this construct and this will go well with any exceptions but there is a weakness if the library will not set InTransaction how it should. try StartTransaction; .... Commit; finally if InTransaction then Rollback; end;
  6. Cristian Peța

    Delphi 11.3 is available now!

    Windows 11 in VM, scaling 125%, DPI Unaware, but positions are a little other. I have this space marked with yellow.
  7. Cristian Peța

    Delphi 11.3 is available now!

    Tried with 125% scaling but can not reproduce either.
  8. Cristian Peța

    Delphi 11.3 is available now!

    I can't reproduce but I didn't touched the default positions. Scaling 150%, DPI Unaware, Light theme. PS. Now I see that issues are only with monitor scaling between 124% and 130%.....
  9. Cristian Peța

    Update an application automatically

    More than 10% from 12500 installations in last year are Windows 7 and 8
  10. Cristian Peța

    Update an application automatically

    But this doesn't work for Windows 7 from what I understand. We used Chrome approach for this and avoided elevation to write in 'Program files'. Elevation is necessary only first time at installation when we create a task in scheduler on the SYSTEM account. Actually two tasks: one with a day trigger and one with a trigger that can be started from our app at demand.
  11. TBitmap.LoadFromStream() will call TStream.ReadBuffer(). Maybe TnxBlobStream.ReadBuffer() is leaking. Have you checked it?
  12. Cristian Peța

    Function with 2 return values ?

    You can return a record: TTotalCostResult = record TotalCost: Double; TotalCostWıthExp: Double; end; function GetBomCosts(ItemCode:String): TTotalCostResult;
  13. Cristian Peța

    Delphi 11.1 - a month later

    What about VCL form designer? There are not things too small?
  14. Cristian Peța

    How to deploy a simple Win 32 app with SQLite file

    Then you need to statically link SQLite code in your executable. UniDAC can do this if you set Direct=True. @SwiftExpat does FireDAC is doing the same?
  15. Cristian Peța

    Developing under Windows 11 in a VM not feasible ?

    Just tried in latest VMware 16 Workstation and my Win 11 VM with Delphi works on other machine. No workarounds. TPM installed and VM password encrypted.
  16. Cristian Peța

    Windows Software Development Kit - why?

    That means that without Windows SDK, Delphi is working but you can't build MSIX packages. Or there are also other downsides?
  17. Cristian Peța

    IDE being destroyed by new versions

    This doesn't affect my workflow so I will not report this issue in quality portal. You can either report it or you will have to live with it.
  18. Cristian Peța

    Migrating away from Indy for file downloads

    TNetHttpClient is a component that uses THttpClient internally. If you don't need what TNetHttpClient offers then use directly THttpClient. TNetHTTPClient = class(TComponent) private FHttpClient: THTTPClient;
  19. Cristian Peța

    Olaf Monien's Multithread demo on DelphiCon was nice!

    Is the source somewhere to download?
  20. "On 64-bit versions of Windows, you have two separate Program Files folders. But it doesn’t end there. You also have two separate system directories where DLL libraries and executables are stored: System32 and SysWOW64. Despite the names, System32 is full of 64-bit files and SysWOW64 is full of 32-bit files. " https://www.howtogeek.com/326509/whats-the-difference-between-the-system32-and-syswow64-folders-in-windows/
  21. If your OS is 64 bit and you have a 32-bit service then search an other place like SysWOW64.
  22. Delphi 10.4.2 I try to understand this exception. I occurs at the app start and this is the only message, then the app closes. It happens only on one machine and the same code but truncated by some IFDEFs (a reduced version of the main app) is working. I suppose that class destructor TDBNavigator.Destroy is called when class constructor TDBNavigator.Create is still looping with FButtonsImageCollection.Add() But what means this address 400000? exception class : EAccessViolation exception message : Access violation at address 76B6C9ED in module 'combase.dll'. Write of address 00400000. thread $4b7c: 76b6c9ed +db combase.dll 00e3c89a +22 WinArhi.exe Vcl.ImageCollection 282 +2 TImageCollectionSourceItem.Create 0054c757 +0b WinArhi.exe System.Classes 6213 +1 TCollection.Add 00e3c965 +05 WinArhi.exe Vcl.ImageCollection 325 +1 TImageCollectionItemSources.Add 00e3d48b +53 WinArhi.exe Vcl.ImageCollection 651 +9 TImageCollection.CreateSourceItem 00e3d576 +2a WinArhi.exe Vcl.ImageCollection 670 +1 TImageCollection.Add 00e3d65a +76 WinArhi.exe Vcl.ImageCollection 683 +2 TImageCollection.Add 00e4f11d +7d WinArhi.exe Vcl.DBCtrls 4188 +3 InitButtonsImageCollection 026cb28d +09 WinArhi.exe Vcl.DBCtrls 4192 +1 TDBNavigator.Create@ 0040b186 +42 WinArhi.exe System 23832 +21 InitUnits 0040b1ef +3f WinArhi.exe System 23907 +14 @StartExe 004140fa +42 WinArhi.exe SysInit 1535 +11 @InitExe 026f025f +0b WinArhi.exe WinArhi 277 +0 initialization 75f7fa27 +17 KERNEL32.DLL BaseThreadInitThunk
  23. Cristian Peța

    Strange exception with "Write of address 00400000"

    Yes, there was some trouble over the 20 years of using it.
  24. Cristian Peța

    Strange exception with "Write of address 00400000"

    Solved. The issue was caused by Sentinel envelope that is applied to the executable. The envelope decrypts and decompress the EXE in memory and is doing a lot of other stuff. The envelope permitted to start the executable but because some incomplete installed drivers I suppose it does not do all the job to restore all what is needed to run properly.
×