Generate code to a Xojo application

Is it possible to generate code file from a Xojo application? And what format would it be?

That way, I could create CRUDs more easily, since it takes a lot of work.

CRUD operations are a hassle—needing one window to update and another to insert. Using a unified approach would save a huge amount of time and ensure a consistent format, translating into gains in maintenance and, of course, especially in development.

There’s an app for this, ARGen. The output format is .xojo_xml_project

You give it a database schema and it generates the ORM and UI.

2 Likes

i will take a look. I would like to create my own program.

Reverse Engineering ?

No just to create an application by an application. I would like to create an application to generate an apllication. It will be more efficient, productive and faster. Sometimes copy a window and change fields and validations is boring .

I did my own before ARGen came out. XML is the format to output to. Then you can drop the resulting xml file into your main application.