Trivial Question (Insert a folder in the Base Start Center for forms)

Well, this may seem trivial to some, but I searched in the instruction manual, online help, but I found nothing on this subject.
.
How to insert a folder in the Base Start Center box for forms in order to obtain such a display, i.e. have forms placed in folders. On a visual and organizational level, the thing is rather interesting.
.
Capture d’écran 2024-02-25 075519

Try Insert → Folder when “Forms” have been chosen.

1 Like

This is useful for organizing the forms in the Start Center, however moving the forms afterwards causes some errors in the Basic macros. I don’t know if this can also affect SQL queries.
.
It’s still interesting, but you should expect to make corrections in certain codes referring to forms, at least that’s what I notice.
.
Thanks @RobertG.

Folders could also be created for reports. Macros, which should start a form or a report, have to be changed to get the form or report in a subfolder:

 ThisDatabaseDocument.FormDocuments.getByName("Folder1").getByName("Form1").open

You will get the subfolders the same way you get a subform in a form document with getByName.

Thanks @RobertG,
.
I’ll probably reorganize the layout of the forms in Base Start Center, so I’ll have to take the time to modify a few scripts. Your information is very relevant, once again Thank you!