Simple GUI - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: Chatting and Socializing (https://staging.qb64phoenix.com/forumdisplay.php?fid=11) +--- Forum: General Discussion (https://staging.qb64phoenix.com/forumdisplay.php?fid=2) +--- Thread: Simple GUI (/showthread.php?tid=281) |
RE: Simple GUI - mpgcan - 06-08-2022 (06-08-2022, 06:32 AM)aurel Wrote: Can you show us then Inform example which work on linux The following is an example that will compile on both Linux and Windows. Note: It was designed specifically for Linux. Program was developed on QB64 2.0. and InForm 1.3 See the following link: https://qb64forum.alephc.xyz/index.php?topic=4689.0 The following, although dated, may be worth a read: https://qb64forum.alephc.xyz/index.php?topic=810.0 All the best RE: Simple GUI - aurel - 06-08-2022 Ok Quote:The amazing thing is that InForm runs like a charm on many distros, including Q4OS 2.4 I have installed latest Q4OS gemini Trinity 64bit but i am not sure which version of qb64_64 i have on that OS.. so which version of inForm i need ? or is there a something different GUI to use ? RE: Simple GUI - aurel - 06-08-2022 well i download OpenSaveDialog2 and try to run linux executable ..not work on my linux Q4OS_64bit RE: Simple GUI - aurel - 06-08-2022 well inform installation on linux not work what i need to type in terminal to install InForm 1.3 on Linux in my case q4os Gemmini trinity RE: Simple GUI - bplus - 06-08-2022 (06-08-2022, 03:53 AM)triggered Wrote: InForm was not Windows only bplus. Yeah OK I was mistaken, it's certainly not Windows only. RE: Simple GUI - aurel - 06-08-2022 so what i need to do to install it after this written by Felippe: i get this : Code: (Select All) aurel@aurel-q4os:~/Documents/qb64_2021-11-07-02-59-19_4d85302_lnx/qb64$ chmod +x ./setup_inform_lnx.sh what is that ..is it installed or not .. RE: Simple GUI - aurel - 06-08-2022 after so called install i run setup.bas with qb64 and i get window with name InForm ..but that window don't respond ..and is not possible to close it any help? RE: Simple GUI - bplus - 06-08-2022 Sorry, It's been so long since I've used, but I think a couple of .h files that come with InForm might have to be moved to your QB64.exe folder. That may be outdated info, if a setup routine has been employed. I remember if anyone wanted to test an InForm app, they had to be sure a couple of .h files were in the QB64.exe folder after they downloaded and extracted the zip. RE: Simple GUI - aurel - 06-08-2022 yeah sure ...nowhere is explaind exactly what ... so i am waiting for Linux Experts to tell me what is wrong here or even work RE: Simple GUI - johnno56 - 06-09-2022 Aurel... The command "aurel@aurel-q4os:~/Documents/qb64_2021-11-07-02-59-19_4d85302_lnx/qb64$ chmod +x ./setup_inform_lnx.sh" you are using is to change the ".sh" into an executable... Looks like your problem could be the "./" in the command... "./" is used to "execute" an "sh" file. What you are trying to do is execute "and" modify in the one command... Try this one: chmod +x setup_inform_lnx.sh Make sure that you are in the same directory as the setup_inform_lnx.sh file... Note: You may or may not require root privileges to execute... |