Jump to content

Kryvich

Members
  • Content Count

    407
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Kryvich

  1. 50 Years of Pascal by Niklaus Wirth. (in Russian)
  2. I was able to install the 10.3 Community Edition on Windows XP, but it refused to work.
  3. If a single-exe project is some command line utility, which is called very often, the size matters. I'd prefer if RTTI will be disabled by default, and it could be enabled for types where it really needed.
  4. I would like to have a compiler option to disable modern RTTI throughout the application, including the linked standard library. Glad to hear that you managed to disable this information in your project.
  5. Kryvich

    Can Delphi randomize string 'Delphi'?

    According to the probability theory, there is a 1/19 770 609 664 chance that on the next try you will get the desired 6-letter word. So the fact that after 400 billion attempts it has not been received looks suspicious, but not impossible. (19 770 609 664 = 52*52*52*52*52*52). By the way, here are the probabilities of finding a word with fewer characters: 1-letter word: 1/52, 2-letter word: 1/2 704, 3-letter word: 1/140 608, 4-letter word: 1/7 311 616, 5-letter word: 1/380 204 032, 6-letter word: 1/19 770 609 664.
  6. Kryvich

    Delphi 10.4.2 first impressions

    @emailx45 Yes, I can reproduce in VirtualBox 6.1 with Windows 10 and Delphi 10.4.2 installed. Error: Invalid Class Typecast. Details: Though I never used this view in modern IDEs. Palette Tool window is more convenient on modern wide displays.
  7. Kryvich

    Nneed a mentor

    Of course, there are such groups. https://t.me/Delphi_Lazarus https://t.me/DelphiCommunity https://t.me/fmx_ru
  8. For those who are interested, this book has been translated into Russian: "Руководство по Object Pascal", Марко Канту.
  9. Kryvich

    Installing Community Edition (error 500)

    @KPB You can't install Delphi and C CE editions at the same time.
  10. Kryvich

    Images in High DPI, how?

    I believe some type of neural network may be used for this purpose.
  11. Kryvich

    Images in High DPI, how?

    For High DPI support you should consider SVG.
  12. Kryvich

    How to extend CE licence?

    I confirm that the problem has been resolved. I got a new key and another 367 days on CE license, though still 10.3.3, not 10.4.
  13. Kryvich

    How to extend CE licence?

    Last time the license for Delphi 10.3 CE expired, they did not renew it, but offered a new license for Delphi 10.3.3 Rio CE. Let's see what they will do this time. Hopefully, they will offer a new 10.4.x license as a Christmas present. 🙂
  14. Kryvich

    How to extend CE licence?

    My last trial license was RAD Studio XE3 Architect Trial.
  15. Kryvich

    How to extend CE licence?

    @Oberon82 I just tried to renew my CE license, and got the same answer.
  16. Kryvich

    Hex2Binary

    I don't get this: {$B-} // avoid multiple conditional jumps by not using short eval Actually $B- disables the complete Boolean evaluation. It's a default setting, and it gets a best result in this case.
  17. Kryvich

    Missing DPR

    I have clear.cmd file in my project folders to remove any temporary files, which contains the command: del /f /s *.~* *.bak *.dcu *.identcache *.local *.map *.drc *.cbk *.stat *.tds
  18. Kryvich

    Outdated Delphi Roadmap

    RAD Studio November 2020 Roadmap PM Commentary
  19. Kryvich

    Outdated Delphi Roadmap

    Christmas is too late.
  20. const STX=#$02; isn't the same as const STX='#$02';
  21. Kryvich

    strange problem with psftp lib

    So instead of "DLL not found" you got "External Exception". This is about how important it is to name exceptions correctly and clearly.
  22. Kryvich

    Reading fields with different lenghts

    packed record > fillchar( MyData, Sizeof(TMyData) , 0 ); MyData := Default(TMyData);
  23. Have you seen QuickJS Javascript Engine: https://bellard.org/quickjs/ The author claims almost complete ES2020 support.
  24. Kryvich

    My custom component becomes NI>

    Where do you store reference variables for the tables? I.e. table1, table2 etc.
  25. Just a remark: I saw the reverse picture when my Win32 application in the Windows XP VirtualBox was running one and a half times faster than in the Windows 10 host machine...
×