A question on using Inform-PE - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Help Me! (https://qb64phoenix.com/forum/forumdisplay.php?fid=10) +---- Thread: A question on using Inform-PE (/showthread.php?tid=3311) |
A question on using Inform-PE - justsomeguy - 12-22-2024 I'm wanting to use Inform-PE on a couple of projects, so I have a question about how to use it. The project will need to have several UI's, for instance a menu screen, option screen, game play, inventory etc. So, to switch between these UI's, do I put everything on separate forms and somehow (?) switch forms, or cram all the controls on the same form and hide the controls I'm not using? Using separate forms make the most sense, but I don't see a obvious way to do it. Have I missed something? RE: A question on using Inform-PE - a740g - 12-23-2024 (Yesterday, 11:43 PM)justsomeguy Wrote: I'm wanting to use Inform-PE on a couple of projects, so I have a question about how to use it. No. You are right. Creating multiple forms is currently not possible due to the way QB64 works (i.e. you get only one main graphics window to work with). To work around this, you can:
RE: A question on using Inform-PE - bplus - 12-23-2024 Yeah or divide and compile into different forms and Run them from central app. |