Pieter Bas Hofstede
Members-
Content Count
8 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Pieter Bas Hofstede
-
Opening form takes 1 minute in debugger, 2.5 s without
Pieter Bas Hofstede replied to PiedSoftware's topic in Delphi IDE and APIs
Does removing all breakpoints (Ctrl+Alt+B), Watches, or closing Local variables frame help? Do you see stuff popping up in the Events-frame? Old dcu or dcp files? -
https://firebirdsql.org/en/firebird-5-0/ New In Firebird 5.0 Summary of New Features Firebird 5.0 introduces many improvements without any changes in architecture or operation, the most important are: Parallel (multi-threaded) operation for backup/restore, sweep and index creation; Partial indices; SKIP LOCKED clause for SELECT WITH LOCK, UPDATE and DELETE statements; Inline minor ODS upgrade; Compiled statement cache; PSQL and SQL profiler; Support for WHEN NOT MATCHED BY SOURCE for MERGE statement; Support multiple rows for DML RETURNING; New built-in functions and packages; Denser record-level compression; Network support for scrollable cursors;
-
How to Export a PowerPoint PPTX File?
Pieter Bas Hofstede replied to Steve Maughan's topic in Delphi Third-Party
Hi all. I want to build this kind of functionality on a serverprocess as well (without Office/Powerpoint installed). Has anyone experience with the Direct Office Library (https://www.winsoft.sk/doffice.htm) ? Or do you use a different library for that? I've been trying the demo-version of the Direct Office Library, but even along with MSDN-documentation I can't even generate a working empty pptx. -
Delphi Alexandria 11.1 Android AAB from Play Store exits on startup
Pieter Bas Hofstede replied to 3delite's topic in Cross-platform
I've even had a situation at one day of an existing project, delete dproj+everything but keep the dpk, when opening the dpk Delphi generated a different dproj+deployment comparing to a complete new FMX-application-setup. Please be aware of that.- 10 replies
-
- alexandria
- android
-
(and 1 more)
Tagged with:
-
Delphi Alexandria 11.1 Android AAB from Play Store exits on startup
Pieter Bas Hofstede replied to 3delite's topic in Cross-platform
Hi, what you could try is making a new FMX-application and after that add all the units of the old dpk to the new dpk. EMB have added a lot of config to the dproj which isn't (of at least wasn't till 10.4.2) automatically added when you upgrade to a newer Delphi-version. I know you'll have to set a lot of config again, but give it a try at least.- 10 replies
-
- alexandria
- android
-
(and 1 more)
Tagged with:
-
What is proper way to crypt some fields?
Pieter Bas Hofstede replied to Andrzej's topic in Databases
Firebird 4.0 is enhanced with encryption algorithms see firebird-40-language-reference Its up to you to - encrypt/decrypt some fields only at Firebird-side - encrypt/decrypt some fields at your business/data-logic side (so database will have some binary encrypted content) - encrypt the complete database (you will need external plugins for that) -
Refactoring Enum to string using enum helpers
Pieter Bas Hofstede replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
FYI both release/win32 Fast RTTI in 10.4.2 🙂 -
Alt-sortcuts are not always the same
Pieter Bas Hofstede replied to PeterPanettone's topic in Delphi IDE and APIs
I think this is related to the dynamically buildup of the IDE menu. I think your application in the 1st situation was a VCL-form-application. Because of that, the menuitem "Multi Device From - Delphi" is made invisible. The 'New Unit' item gets it's shortcut with the 'U'. When your projects is closed, de IDE makes it possible again to add a new "Multi Device From - Delphi". After enabling this menitem, it recalculates shortcuts for this menu. It chooses the "u" as shortcut (as "M" is already in use". Because of this the menu item "Unit - Delphi" can't get shortcut-key "U" anymore, and get it's next available character as shortcut ("n"). Could it be something like this?