![]() |
InForm-PE - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Expanding Horizons (Libraries) (https://qb64phoenix.com/forum/forumdisplay.php?fid=21) +---- Forum: a740g (https://qb64phoenix.com/forum/forumdisplay.php?fid=55) +---- Thread: InForm-PE (/showthread.php?tid=1756) |
RE: InForm-PE - cage - 12-23-2023 I am having a problem compiling InForm programs with Linux. Seems when I load the program in QB64pe the program cannot find the InForm.bi. Even if I set the location manually it still will not see it. What is weird is the example programs work, but not anything I created. Even if I put them into the example folder of the home folder of InForm. The old version of Inform works with QB64pe version 3.4. That one uses the Falcon.h. RE: InForm-PE - cage - 12-24-2023 Okay I resolved the problem. There is a folder inside InForm called InForm. By coping that folder into QB64pe folder all of my projects now run. I created a folder call Projects and everything in that folder worked. It's basically the same thing as the original layout but without the Faclon.h. RE: InForm-PE - a740g - 12-26-2023 (12-24-2023, 07:36 PM)cage Wrote: Okay I resolved the problem. There is a folder inside InForm called InForm. By coping that folder into QB64pe folder all of my projects now run. I created a folder call Projects and everything in that folder worked. It's basically the same thing as the original layout but without the Faclon.h.Yes. That is correct. I did try to explain this somewhat here: InForm-PE/README.md at master · a740g/InForm-PE (github.com), but I think I need to make it clearer. @FellippeHeitor also wrote about it here: Distributing your InForm-based programs (alephc.xyz) I am planning to implement a way where the form editor automatically copies the required InFrom dependencies to the form project directory. RE: InForm-PE - a740g - 02-12-2024 Folks looking for the InForm wiki can find it here: https://github.com/a740g/InForm-PE/wiki I found and updated the wiki with all the original images that went missing when qb64.org went down. Also, added @FellippeHeitor's excellent INI-Manager as an InForm extension. InForm was using this internally. It made sense to allow other InForm apps to use it as well. I cleaned-up the API a bit. You can find the library documentation here: https://github.com/a740g/InForm-PE/blob/master/docs/INI-Manager.md RE: InForm-PE - Kernelpanic - 02-12-2024 (11-22-2023, 06:14 PM)a740g Wrote: Sorry about that. You did nothing wrong.Regarding the ZIP file, it doesn't contain the latest files, right? "Ini.bi" is from October 2023, and "ini.bas" is completely missing. Could you put the entire folder at InForm-PE into a 7z or zip file? Would be helpful. Otherwise one have to download around 30 individual files, or is there a trick to do everything in one download? Thanks! Another question: Does the entire file structure as it appears on GitHub have to be installed in the InForm_PE folder, or just all files without the folder structure? RE: InForm-PE - a740g - 02-12-2024 (02-12-2024, 04:36 PM)Kernelpanic Wrote:You can use the master.zip in the first post (also below). It always pull the latest commits from GitHub.(11-22-2023, 06:14 PM)a740g Wrote: Sorry about that. You did nothing wrong.Regarding the ZIP file, it doesn't contain the latest files, right? "Ini.bi" is from October 2023, and "ini.bas" is completely missing. https://github.com/a740g/InForm-PE/archive/refs/heads/master.zip You will need the maintain the directory structure (at a minimum for stuff inside the InForm directory). The InForm runtime code pulls libraries and resources from InForm/extensions and InForm/resources. RE: InForm-PE - Kernelpanic - 02-14-2024 @a740g - It really has to be exactly like the instructions; see photo. ![]() Trying to integrate it into my normal folder structure failed and I couldn't find an ini file to adapt this. Ok, I then copied the QB64 folder and renamed it as it should be in the instructions. After that it worked. There were two "not found" messages. ![]() Now for the performance. I tried to recreate a program from VB 5.0, but I'm having trouble setting the color of the heading. The setting is black but I don't see it. ![]() RE: InForm-PE - a740g - 02-14-2024 (02-14-2024, 08:48 PM)Kernelpanic Wrote: @a740g - It really has to be exactly like the instructions; see photo. Yes. You are right about the directory setup for compiling InForm itself. I was suggesting more from the point of integrating InForm dependencies in your own project and then bundling the whole thing. See this post: InForm-PE (qb64phoenix.com) You can ignore the two not found messages. Those are from the Makefile trying to clean a previous build of UiEditor and UiEditorPreview which would be missing when you build InForm for the first time. To set the foreground / background colors of any control, use the Color Mixer in the UiEditor window. Use the dropdown to switch between the background and foreground color. ![]() More info in the wiki: Color properties · a740g/InForm-PE Wiki (github.com) RE: InForm-PE - Kernelpanic - 02-15-2024 I recompiled everything again and then set it up the way I do with all programs. But that doesn't really work. As far as I have found, one cannot run programs in a different folder than specified. I have tried adjusting the paths, but I get one error after another because a file is not found. This doesn't work properly ![]() Code: (Select All)
The problem with the color setting has been resolved - I accidentally used a text field. Now I have another problem. If I click on "Calculate" (Berechnen) under VB, then I can program it, but how does it work in InForm? ![]() Code from VB: Code: (Select All)
In addition, everything is LONG by default. Code: (Select All)
RE: InForm-PE - a740g - 02-15-2024 @Kernelpanic They say a picture is worth a thousand words. So, I cooked up a fresh InForm-PE setup in a fresh environment from scratch. This explains, how I would setup everything step by step. Hope this will help. ![]() Download the latest QB64-PE and InForm-PE and save those in a directory (in this case C:\Lab). ![]() Extract both archives. ![]() Notice the directory structure on the left. This is important. ![]() Enable "Output EXE to Source Folder". Notice the dot. This is off by default (which is pure evil IMO). ![]() ![]() Run "setup_inform_win.cmd" to compile InForm-PE. ![]() Wait for everything to compile. ![]() Done. ![]() Then I create C:\Lab\Projects\Four Up. ![]() Create the form using UiEditor and save it in C:\Lab\Projects\Four Up. ![]() Note that we cannot compile it yet, because the InForm dependencies are missing. ![]() To resolve the dependency issue, copy the InForm directory in the InForm-PE directory, and... ![]() ...paste it in our project directory (Four Up). ![]() In the end we should have something like this. The following screenshots show compiling and running the project. ![]() ![]() ![]() ![]() ![]() Note that I am working on solution in a future update of the InForm UiEditor where it will automatically copy all required dependencies to the project directory. |