Archive
Tuesday, 7. October 2014
0
votes

Working with Multi-Touch Input in Delphi XE7 (Part 1)
OTAPI
– Introduction Before the release of XE7, handling multi-touch inputs in Delphi (and C++ Builder) applications was quite a complicated affair. While Delphi 2010 introduced “Gesture” support, this solution was less than ideal for real-time multi-touch input handling, as an action bound to a ...
3
votes

Delphi: RandomizeIfNeeded
The Wiert Corner
– Calling Randomize too often can make your Random numbers even less random. Sometimes having the Randomize call in a unit initialization section is not practical. Hence this little method that I think I first wrote back in the Turbo Pascal days: procedure RandomizeIfNeeded(); begin if RandSeed = 0 ...