-
Content Count
407 -
Joined
-
Last visited
-
Days Won
8
Everything posted by Kryvich
-
50 Years of Pascal by Niklaus Wirth. (in Russian)
-
Install recent Delphi versions on Windows XP
Kryvich replied to dummzeuch's topic in Delphi IDE and APIs
I was able to install the 10.3 Community Edition on Windows XP, but it refused to work. -
Fighting the bloat: Delphi links unnecessary files (COM library projects)
Kryvich replied to A.M. Hoornweg's topic in RTL and Delphi Object Pascal
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. -
Fighting the bloat: Delphi links unnecessary files (COM library projects)
Kryvich replied to A.M. Hoornweg's topic in RTL and Delphi Object Pascal
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. -
Can Delphi randomize string 'Delphi'?
Kryvich replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
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. -
@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.
-
Of course, there are such groups. https://t.me/Delphi_Lazarus https://t.me/DelphiCommunity https://t.me/fmx_ru
-
Object Pascal Handbook - Delphi 10.4 Sydney Edition - Marco Cantù (2020) - 571pg
Kryvich replied to a topic in Tips / Blogs / Tutorials / Videos
For those who are interested, this book has been translated into Russian: "Руководство по Object Pascal", Марко Канту. -
@KPB You can't install Delphi and C CE editions at the same time.
-
I believe some type of neural network may be used for this purpose.
-
For High DPI support you should consider SVG.
-
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.
-
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. 🙂
-
My last trial license was RAD Studio XE3 Architect Trial.
-
@Oberon82 I just tried to renew my CE license, and got the same answer.
-
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.
-
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
-
RAD Studio November 2020 Roadmap PM Commentary
-
Christmas is too late.
-
Why do these 2 statments produce different results ?
Kryvich replied to AndrewHoward's topic in Delphi IDE and APIs
const STX=#$02; isn't the same as const STX='#$02'; -
So instead of "DLL not found" you got "External Exception". This is about how important it is to name exceptions correctly and clearly.
-
Reading fields with different lenghts
Kryvich replied to AndrewHoward's topic in Delphi IDE and APIs
packed record > fillchar( MyData, Sizeof(TMyData) , 0 ); MyData := Default(TMyData); -
Variant support in chakracore-delphi
Kryvich replied to a topic in Tips / Blogs / Tutorials / Videos
Have you seen QuickJS Javascript Engine: https://bellard.org/quickjs/ The author claims almost complete ES2020 support.- 6 replies
-
- chakracore
- chakracore-delphi
-
(and 1 more)
Tagged with:
-
Where do you store reference variables for the tables? I.e. table1, table2 etc.
-
Performance issues running Delphi Applications on Windows VM
Kryvich replied to costa's topic in Tips / Blogs / Tutorials / Videos
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...