Jump to content

Kryvich

Members
  • Content Count

    407
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Kryvich

  1. Kryvich

    ANN: HTMl Library 4.9 released. WebUI and more

    Is WebUI optimized for mobile devices, or just for devices with large screens (computers)?
  2. Kryvich

    Two CE Versions on same PC

    In DAV_Compiler.inc file, try adding the following code right after the {$IFDEF VER350}..{$ENDIF VER350} block: {$IFDEF VER360} // RAD Studio 12 Athens {$DEFINE BDS} {$DEFINE COMPILER27} {$IFDEF BCB} {$DEFINE BCB27} {$ELSE} {$DEFINE DELPHI27} {$DEFINE DELPHIRX2} // synonym to DELPHI27 {$DEFINE DELPHICOMPILER27} {$ENDIF BCB} {$IFDEF CPUX64} {$DEFINE 64BIT} {$DEFINE CPU64} {$DEFINE CPUx86_64} {$UNDEF CPU386} {$UNDEF CPU32} {$ELSE} {$DEFINE 32BIT} {$DEFINE CPU32} {$ENDIF} {$DEFINE RTL350_UP} {$UNDEF UNKNOWN_COMPILER_VERSION} {$ENDIF VER360} This is the same code, only {$IFDEF VER350} is replaced with {$IFDEF VER360}. See Compiler versions: https://docwiki.embarcadero.com/RADStudio/Athens/en/Compiler_Versions
  3. Kryvich

    Two CE Versions on same PC

    The beauty of open source libraries is that you can update and recompile them yourself for a new version of Delphi. There are no major differences between 11.3 and 12.1 that would prevent an upgrade. A month and a half ago I installed the new version of Delphi CE 12.1 myself. I use some unsupported opensource libraries in my programs. To recompile them, all I had to do was add a few defines. However, I have not uninstalled the old version of CE yet, and I currently have both Delphi 11.3 and Delphi 12.1 installed on my home computer. My Delphi 11.3 key will be valid for another 227 days. P.S. Which Open Source library do you use in your program?
  4. Kryvich

    Markdown parsing components for FMX

  5. Kryvich

    Codolex 2.0 is now Free - Low-Code for Delphi

    The email I received after downloading stated: What happens after 30 days of using the program?
  6. Kryvich

    TFDMemTable - how to clear structure?

    See my comment from 2020.
  7. Kryvich

    End of licence Comunity edition.

    There are no major language and RTL differences between Delphi 10.4 and 11. At the same time, the new version is more stable, has better HighDPI support, improved LSP based ErrorInsight... There is no reason to stay on the old version of Delphi. Only if you have specific requirements that do not allow you to switch to a new one.
  8. Kryvich

    Tensorflow without python

    I wonder if it is possible to create a similar binding for the PyTorch library? To use it directly from Delphi without installing Python.
  9. Kryvich

    CE registering problem

    The new Community edition cannot be installed from ISO in any way. Moreover, they don't provide a link to the ISO for the CE's users, only a link to the online installer.
  10. Kryvich

    Delphi 11 CE Alexandria EdgeBrowser component

    Have you prepared the Edge Browser component for using with your Delphi application? You need an appropriate WebView2Loader.dll to put in a folder with your EXE file.
  11. Kryvich

    C to Pascal

    I tried Bing AI to convert from C to Delphi and it worked quite well. However, I converted individual functions, not the entire library.
  12. Kryvich

    How many people use Delphi?

    However, they have updated the build-in assembler, and now you can write quick code snippets right in the PAS file.
  13. Kryvich

    Delphi 11 Community edtion

    Just installed and immediately ran into a problem with the main toolbar. But there is already a solution.
  14. Kryvich

    Delphi 11.3 (PPI)

    I have just installed a new Delphi 11 Community Edition. And I see something similar with positions of non-visual components (MainMenu, ActionList, OpenDialog etc.) on my form in the VCL Form Designer. Positions are shifted when opening and saving the form. When I compare DFM files, before and after saving, in the new file, the explicit dimensions (ExplicitWidth, ExplicitLeft) differ from those in the old file. For. ex. in the old file: ExplicitWidth = 1630 ExplicitLeft = 1306 In the new file: ExplicitWidth = 1272 ExplicitLeft = 948 Workaround: Immediately after opening your form in the designer, click Save to correct the positions of the non-visual components.
  15. Time to upgrade! I guess it was not an easy decision. Thank you Embarcadero!
  16. Kryvich

    How many people use Delphi?

    http://www.isdelphidead.com
  17. Kryvich

    Unicode weirdness

    @David Schwartz What type is ln, AnsiString or String? Try ln := StringReplace( strs[n], AnsiString('➤'), '>', [rfReplaceAll] );
  18. Kryvich

    Syntax Highlighting

    I just tried the PlusMemo editor. Looks very interesting. Loads a text much faster than standard Windows RichEdit. The Win32 version failed to load large files, but a 50MB XML file can be loaded, plugged in a highlighter, and edited comfortably. Conclusion: it's a great rich text editor, thanks for bringing it to our attention! And thanks to the developers for open sourcing it! It would be great to see it on Github.
  19. Kryvich

    AliexpressAPI

    May be aliexpress-api-delphi is a closed source repository. Or never existed, but was made up by a neural network. Only Thomas can answer.
  20. @David Schwartz If you need a ready to use solution, you may look at the answers to this question: https://stackoverflow.com/questions/9533760/how-can-i-get-a-dataset-of-in-memory-objects In particular, The Dduce library, TListDataSet<T>.
  21. @David Schwartz The chain TList -> TClientDataSet -> TListDataSet is too long. It would be enough TList -> TClientDataSet. The client dataset is a dataset, so the problem is solved.
  22. Even if this TListDataSet existed, I do not think that the proposed approach is optimal.
  23. It `s Magic. Before our eyes, large artificial neural networks are becoming more and more intelligent.
  24. Kryvich

    Community Edition expiring again, no new keys

    Initially, it was assumed that the community edition would be updated before the expiration of the license, simultaneously with the release of a new version of IDE. But then they changed their mind.
×