-
Content Count
576 -
Joined
-
Last visited
-
Days Won
7
Everything posted by Tommi Prami
-
I believe Embarcadero acquired rights to Ide FIX pack and changes are added to IDE it self, embarcadero only knows which ones and how tough... Andy is now trying to make DDevExtensions for Rio, but had some problems with debugging Ide bpls, I think I saw tweet yesterday. -Tee-
-
What is the fastest way to check if a file exists?
Tommi Prami replied to dummzeuch's topic in Windows API
Does that work with UNC paths? (Just asking) -
Report to Embarcadero Issuer tracker, and put link into here. So we can Vote on it.
-
Microsoft Windows Beta UTF-8 support for Ansi API could break things
Tommi Prami posted a topic in Windows API
Wiki Article of the Change https://en.wikipedia.org/wiki/Unicode_in_Microsoft_Windows#cite_note-10 One of out customer had selected that and we started to experience very weird problems and took some time to find out why it misbehaves. None of the application could connect to Firebird SQL server (Ours or third party) successfully. So would be smart to go through all tooling and code with that setting, we never know what M$oft will do with that, will it ever be released or will it soon be default for all. One coder switched this on and started to get weird results, he could not specify what all symptoms, but said that lot of work to be done before that setting can be enabled. Could be smart to Check how your environment, tools and code will behave. -
Microsoft Windows Beta UTF-8 support for Ansi API could break things
Tommi Prami replied to Tommi Prami's topic in Windows API
Sure is, but in other hand, why not use "Unicode API" at first place. I would guess they use Ansi API just as proxy to and from Unicode UTF16 API. SomeWindowsApiA -> String Conversion to UTF16 -> SomeWindowsApiAW Have not checked, just my hunch... In other hand If they have UTF-8 enabled API that is not just proxy to Wide API, then it could provide speed improvement if App uses UTF-8 strings. -
Aligned and atomic read/write
Tommi Prami replied to Jacek Laskowski's topic in RTL and Delphi Object Pascal
Memspeed app by Primož, build with 10.2.3, Release mode, 32 and 64 bit versions, If any dares to download... MemSpeed.7z -
Aligned and atomic read/write
Tommi Prami replied to Jacek Laskowski's topic in RTL and Delphi Object Pascal
Check out this fabulous book about memory alignment and performance. -
Creating Component Templates in Delphi
Tommi Prami replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
Any idea where that saves the info, Registry maybe? Could be nice to make some syc-app that would sync all templates to all codes in the team. If needed... All would benefit and also properties would be unified also. without too much hassle. -Tee- -
Might be pretty difficult to make it but sometimes I've been pondering what would be quick way. Get screenshot of the Form Paint line(s) in order you'd like tabs go. Not best in all cases, but many it would be super fast. -Tee-
-
Does anyone have some library/unit to make coding of tokeniser/parser/somekind of tree easier?
Tommi Prami replied to Tommi Prami's topic in Algorithms, Data Structures and Class Design
OK, i'll rephrase 🙂 Any syntax chosen. Forgot abo8ut DelphiAST, that could be first stepping stone to look from. I've just been thinking that would be cool to study how it is done, and maybe do some small app in the process. -Tee- -
Does anyone have some library/unit to make coding of tokeniser/parser/somekind of tree easier?
Tommi Prami replied to Tommi Prami's topic in Algorithms, Data Structures and Class Design
More than less general. Any syntax basically... -
Pretty handy, also if it could remove the Delphi formattings so I could easily take SQL and paste it then to SQL tool to tinker with...
-
Once tried to do something like this on FMX, 1. Could not get it to look right 2. Was so much work. Memory of the process is very vague, tried to make some style thingy and use that. My observation was so that some things on Fmx are very complicated. Easier to make style than totally new VCL component with similar support build in, maybe. it depends I guess. Should give fmx a new change, do simple project with it. -Tee-