Jump to content

Cristian Peța

Members
  • Content Count

    392
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Cristian Peța

  1. Cristian Peța

    Trouble with installing community edition serial number

    That serial number is not for Delphi 11 that is the current community edition?
  2. Cristian Peța

    Delphi and "Use only memory safe languages"

    Linux and Windows sources are C, C++, Assembly....
  3. Cristian Peța

    Delphi 12 : Encoding Unicode strange behaviour

    Then you don't know if that first char is one or two bytes. You test first byte (suppose UTF-8) and if it is not what you expected then you test first two bytes?
  4. Cristian Peța

    MyDAC : Unknown column error

    After connection is created is too late. But default is True.... https://docs.devart.com/unidac/devart.dac.tdaconnectionoptions.keepdesignconnected.htm
  5. Cristian Peța

    New RAD Studio 11.3 (Build 2024) posted Feb 20, 2024

    Server outage and GetIT server changed. Old online installer does not work anymore.
  6. Cristian Peța

    Help With NetCom7

    Maybe I am from ice age and Delphi evolved since then... but this does not compile in D11.3: E2005 'Create' is not a type identifier Calling TGUIDHelper.Create() in procedure declaration where you need to give a type is somehow strange for me.
  7. Cristian Peța

    Help With NetCom7

    aData type is terrible... is this Delphi code?
  8. Cristian Peța

    Can't complete installation of RAD 10.4

    Install from ISO.
  9. Cristian Peța

    MyDAC : Unknown column error

    Too little details but a debug call-stack should tell us something more.
  10. Cristian Peța

    What new features would you like to see in Delphi 13?

    It's not a compiler problem, but record variables are not class variables and when you declare a record variable it is allocated automatically. You enter into a infinite loop of circular allocation. type TRecA = record; TRecB = record FieldA: TRecA; end; TRecA = record FieldB: TRecB; end; var a: TRecA; //infinite circular allocation of memory
  11. Cristian Peța

    What new features would you like to see in Delphi 13?

    Yes, but imagine someone with 200% display scale with a magnifying glass trying to adjust something on a form because the form is half the size.
  12. @weabow TFDPhysSQLiteDriverLink is in FireDAC.Phys.SQLite.pas But if you copy-paste from here it won't work because after last "k" character there are some non-visible chars: EF BB BF EF BB BF
  13. You only need a iOS 16 device. BTW I don't write today iOS app but but at that time I learned that upgrading iOS on the device should be done only when there is a confirmation that debugging from Delphi works on new iOS.
  14. What is "STM32 code"? Delphi code is not a communication protocol (similar to a spoken language) but a programing language. With Delhi code or any programing language you can not communicate.
  15. Then you want to write a transpiler in Delphi to translate Delphi code to "STM32 language" and back? But what is "STM32 language" ? Just found something where Pascal is mentioned (link: https://www.st.com/en/development-tools/stm32-ides.html): And here (link https://smartsolutions4home.com/how-to-program-stm32/) states: "The only correct option here is C. Don’t bother with other creations."
  16. Cristian Peța

    Current state of the Embarcadero services

    https://blogs.embarcadero.com/getit-update-additional-rad-studio-12-getit-packages-are-now-available/ I understand from the link above that who installed with old online installer GetIt will not work.
  17. Cristian Peța

    Current state of the Embarcadero services

    For D12 there is a new installer because GetIt server changed. I suppose you need to install with the new installer in order to work Welcome page or Tools menu.
  18. Cristian Peța

    TForm Destroys are not called when target is macOS ARM 64-bit

    Finally... upper right corner (not left).... basic and advanced search doesn't work
  19. Cristian Peța

    TForm Destroys are not called when target is macOS ARM 64-bit

    You have not posted a link and probably it's a stupid question but how to find a RSP by number?
  20. As @Uwe Raabe said, Embarcadero does not want to do this. You are the only one who can give Embarcadero a good reason to give you a new 10.4.2 CE license. If you have sources I don't think this is a show stopper. Ask help here if there is something blocking you to use D11.
  21. Cristian Peța

    How to call a Delphi function from a python script?

    That would be Delphi4Python. Otherwise you need a inter-process communication. For example your Delphi code can run in REST server.
  22. Cristian Peța

    DateTime problem in fastreport's PFD export.

    I said before that mm represents also minutes if after hh. It states in documentation: mm Displays the month as a number with a leading zero (01-12). If the mm specifier immediately follows an h or hh specifier, the minute rather than the month is displayed.
  23. Cristian Peța

    DateTime problem in fastreport's PFD export.

    That field is not read by MemoView? Why convert it to String then again to TDateTime? In script you can use <MyTable."MyDateTimeField"> to read it as Variant that will keep TDateTime as it is (actually a Double).
  24. Cristian Peța

    DateTime problem in fastreport's PFD export.

    It is as text and it must be formatted like regional settings because you are using StrToDateTime() to convet this text to TDateTime.
  25. Cristian Peța

    DateTime problem in fastreport's PFD export.

    What value is in that frxMemoView text before change and what after?
×