09-14-2025, 03:47 PM
Currently, only one form can be managed at a time because QB64 supports a single graphics window per application.
However, you can work around this limitation by creating multiple InForm-PE applications and having them communicate using command-line arguments or some form of IPC.
In fact, that's exactly how UiEditor.bas and UiEditorPreview.bas operate. They communicate via IPC to coordinate between the editor and the preview window.
However, you can work around this limitation by creating multiple InForm-PE applications and having them communicate using command-line arguments or some form of IPC.
In fact, that's exactly how UiEditor.bas and UiEditorPreview.bas operate. They communicate via IPC to coordinate between the editor and the preview window.

