1 (edited by argonx 2021-08-04 10:50:46)

Topic: Few smaller projects into one big

Greetings all,

I need idea, if possible, first I found MVD for smaller projects but after some time, I made so many of them that are based on same MYSQL server and same "problem" (same job)

I wanted to combine them into one big but wanted also to keep them apart (for easier editing, debugging)

For instance I've got:
1. Orders
2. Warehouse
3. Planning...

I want to combine them so I can enter any of above from one screen (form) but don't know what is easiest and best way to do it
If I add it to one project, id has HUUUGE script.pas (don't like to add more .pas files because of easier editing)

With scripts? maybe?

uses sysutils;
begin
  executeprocess('notepad.exe',['document.txt']);
end.


Also, Can I make program ALLWAYS show only active form and disable all others?

BR