Right now, when I need a special dialog, no matter how simple it is, I use the Delphi form designer to create a new dialog form. Then the form completes with the easy-to-use ShowMessage () function.
In some situations, it would be easier if forms could be created at runtime from a script. The script will describe in detail all the components of the form and their properties, similar to Delphi.DFM files.
Creating graphical interfaces from scripts can be useful in other situations. For example, a widget GUI can be embedded in an existing application window. Or the GUI script can be modified at runtime to create GUI options.
I could create something to do it myself, but I believe that other people have already solved this problem. However, I can not find anything using Google. Is there anything currently offering such functionality? (Free or Not) Or does it already exist in Delphi?
source share