Jump to content

Cristian Peța

Members
  • Content Count

    412
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Cristian Peța

  1. 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.
  2. Cristian Peța

    Help With NetCom7

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

    Can't complete installation of RAD 10.4

    Install from ISO.
  4. Cristian Peța

    MyDAC : Unknown column error

    Too little details but a debug call-stack should tell us something more.
  5. 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
  6. 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.
  7. @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
  8. 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.
  9. 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.
  10. 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."
  11. 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.
  12. 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.
  13. 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
  14. 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?
  15. 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.
  16. 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.
  17. 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.
  18. 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).
  19. 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.
  20. Cristian Peța

    DateTime problem in fastreport's PFD export.

    What value is in that frxMemoView text before change and what after?
  21. Cristian Peța

    DateTime problem in fastreport's PFD export.

    You want to change the text value from a frxMemoView from date-time to display hour and minutes? Because mm is month... and HH is not documented. See documentation: https://docwiki.embarcadero.com/Libraries/Alexandria/en/System.SysUtils.FormatDateTime EDIT: Now I see that mm can show minuts if after hh.
  22. Cristian Peța

    DateTime problem in fastreport's PFD export.

    Are the script code using regional settings? Do you need the user to decide the format?
  23. Cristian Peța

    DateTime problem in fastreport's PFD export.

    What is invisible mode? A Windows service? Can you show the code of that script?
  24. DELETED: some misunderstanding about subscription....
  25. Cristian Peța

    App Builder & Blazor

    There was a survey that closed on 21 January. In the survey was a question also about WebAssembly.
×