-
Content Count
564 -
Joined
-
Last visited
-
Days Won
8
Everything posted by Markus Kinzler
-
DevArt releases new compatible versions
-
Besides the problems every update of RAD Studio has ( deinstallation of GetIt packages without removal from the IDE -> IDE not restarting after update) this patch delivers an incompatible openapi interface! Several plugins/component libaries cannot be used without an update from the vendor/developer! This is NoGo! Seems there is no quality control at all!
-
FireBird (embedded) would be a futher option. The same database file can be used in the server and embedded (client) edition. Triggers are fully supported.
-
VCL or CLX? How do I know what type of application I'm designing in Delphi 7. I'm a beginner.
Markus Kinzler replied to Miguel Jr's topic in Delphi IDE and APIs
VCL. CLX is long dead. Was (first) attempt of an cross platform solution. CLX was also used in Kylix (Delphi for Linux) being discontinued a long time ago. -
https://github.com/Embarcadero/BoldForDelphi BoldForDelphi The original source code of the Bold library for Delphi Version 4.0.1.0 Bold for Delphi, Release 4.0 - 2004-04-23 Bold is a tool in the MDA (Model Driven Architecture) space, which allows you to start with an UML model of your application and a set of business rules written in a high level language and “execute” the model after creating a graphical user interface for it. Bold includes a sophisticated object-relational mapping layer, ability to map data to multiple formats, changes synchronization, and much more. It includes a large amount of IDE integrated tools and options to work with external UML modeling software. For more information see: https://delphi.fandom.com/wiki/Bold_for_Delphi http://boldfordelphi.blogspot.com/ The project source code has been made available by https://www.embarcadero.com/ and published under an MIT license.
-
Showing TMenuItem icons at design time in the IDE
Markus Kinzler replied to PeterPanettone's topic in Delphi IDE and APIs
In my opinion all is said. @PeterPanettone Just submit a feature request. It has nothing to do with "lacking abilities" of the developers but priorities for development -
Library for modifying windows PE files?
Markus Kinzler replied to Vincent Parrett's topic in General Help
If you use Code from an gpl-licenced product, you have to release the code of your product, too. That's the idea behind the GPL. It doesn't matter if you earn money with it or not. With the "publishing" of the program, you have to to this. If you use the programm on "your server" and let extern people use it ("Cloud") you wouldn't obliged to this, besides earning money with it. So they introduced "GNU AFFERO GENERAL PUBLIC LICENSE" to assure the same behaviour. For Software beeing downloadable there is no difference to the GPL. -
Library for modifying windows PE files?
Markus Kinzler replied to Vincent Parrett's topic in General Help
The "normal GPL" doesn't apply if the program is installed on the Web/Cloud. This licence explicitly iclude this scenario. -
I locked them out agian, for now.
-
Ich bin schon dabei, die ganzen Accounts zu sperren
-
Store a large number of images in the filesystem or in a DB?
Markus Kinzler replied to RaelB's topic in Databases
Do you need to access to the image files besides your application? When not I would suggest to store the files in an database. In aspect of security and movebility. -
If you want to use a alias, then you have to create it on every PC the program is run. (can be done by program or installer)
-
In RadStudio 11.2 the version of the JDK is raised to 11 that means Android API Level 32. There're alterations in the manifest: https://docwiki.embarcadero.com/RADStudio/Alexandria/en/11_Alexandria_-_Release_2#Updated_AndroidManifest.template.xml_file
-
Install Raize component pack 6.1.10 in Delphi 10 Seattle
Markus Kinzler replied to AndrewHoward's topic in General Help
A newer version 6.5.0. (now called Konopka Signature VCL/Bonus KSVC) is available in GetIT Update: An update to 7.0 also there -
Btw. the latest RadStudio roadmap dates to November 2020 ...
-
need something like a Windows Registry that runs as a web service
Markus Kinzler replied to David Schwartz's topic in Network, Cloud and Web
Whay not a standard sql or no-sql database to achive this? -
The BEST template engine for generating webpages on the server side?
Markus Kinzler replied to Edwin Yip's topic in Tips / Blogs / Tutorials / Videos
https://github.com/sempare/sempare-delphi-template-engine https://github.com/synopse/dmustache https://github.com/marcocantu/DelphiRazor -
Oracle has an interest of making profit. So they may interprete the licences more strictly than others. Do you deliver/install the MySQL Server. Is this the case you need a commercial licence (as long as your application isn't GPL). If the Server is beeing installed by your customers und you "only" use a existing installation then your customers may need a licence. (In this case olso the client dll must be excluded from your program) MariaDB is a fork of MySQL with a better licence. which can be used as replacement for the MySQL Server (with lesser risks for you and your customers.) A switch to and another DBMS like PosGres or FireBird ( which I also would prefer) may need adaptions in your program.
-
Oracle doesn't care if the software is only used internally. Better use MariaDB instead of MySQL. PostgreSQL is much more potent than MySQL.
-
Perhaps there are more relevant details on the call stack
-
[firebird] Converting DB from one charset to other
Markus Kinzler replied to Jacek Laskowski's topic in Databases
Best by batchmoving the data from one db to another. -
Cross platform isn't just mobile. The features could be usable on MacOS or Linux, too.
-
Help to achieve multiple inheritance by class redesign
Markus Kinzler replied to iiid354's topic in Algorithms, Data Structures and Class Design
There is already a class for this: TInterfacedObject TEgon = class( TInterfacedObject, IHuman, IManager);