QB64 bug when using Inform - 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: QB64 bug when using Inform (/showthread.php?tid=1577) Pages:
1
2
|
RE: QB64 bug when using Inform - bplus - 03-29-2023 Text Fetch still works after all these years in QB64pe.exe v 3.6 RE: QB64 bug when using Inform - a740g - 07-21-2023 (03-29-2023, 11:56 PM)bplus Wrote: Text Fetch still works after all these years in QB64pe.exe v 3.6@bplus Here is the updated version of Text Fetch that works with QB64-PE 3.8 and InForm-PE. It also has an updated and simplified version of @SMcNeill 's direntry.h So, basically Text Fetch is now completely cross-platform. I've added this to the InForm-PE examples on GitHub. Hope that is ok. InForm-PE/examples at master · a740g/InForm-PE (github.com) RE: QB64 bug when using Inform - bplus - 07-21-2023 Thumbs up! Good, nice to see this old classic updated Selecting text may be a little clunky but so is shift + arrow speeds sometimes. RE: QB64 bug when using Inform - SMcNeill - 07-22-2023 (07-21-2023, 11:13 PM)a740g Wrote:Simplified version of direntry? Can you share it with me sometime, with a few comments about which/what you altered/expanded/simplified?(03-29-2023, 11:56 PM)bplus Wrote: Text Fetch still works after all these years in QB64pe.exe v 3.6Here is the updated version of Text Fetch that works with QB64-PE 3.8 and InForm-PE. It also has an updated and simplified version of SMcNeill 's direntry.h RE: QB64 bug when using Inform - a740g - 07-22-2023 (07-22-2023, 01:24 AM)SMcNeill Wrote:(07-21-2023, 11:13 PM)a740g Wrote:Simplified version of direntry? Can you share it with me sometime, with a few comments about which/what you altered/expanded/simplified?(03-29-2023, 11:56 PM)bplus Wrote: Text Fetch still works after all these years in QB64pe.exe v 3.6Here is the updated version of Text Fetch that works with QB64-PE 3.8 and InForm-PE. It also has an updated and simplified version of SMcNeill 's direntry.h I've included it on the zip I shared above. Here's a link to it from my GitHub. InForm-PE/examples/TextFetch/direntry.h at master · a740g/InForm-PE (github.com) Code: (Select All)
The biggest change here is that read_dir$() is now a FUNCTION and returns a string. Other than this, open_dir() returns a QB compatible bool if it fails. There is some protection for possible memory leaks if open_dir() is used without calling close_dir(). RE: QB64 bug when using Inform - bplus - 07-22-2023 Wasn't I loading only .bas and .txt files in Text Fetch? I tried this new one and overwhelmed it by accidently loading an .exe. Oh I was using old Shell Dir commands... for Windows only. Anyway the app was intended for bas and txt files only. RE: QB64 bug when using Inform - GareBear - 07-22-2023 I think Text Fetch like QB64pe likes text file only in ASCII. When I load any *.txt file some did not show up in middle box and some did. I don't think Text Fetch is at fault. Not all text files are saved the same all according to the word processor that is used. It worked well, thanks. After I wrote this. I found out in Linux, if the text file is restrictive on who has the read/write privilege to the file then Text Fetch will not show the text in the box. I hope this helps. RE: QB64 bug when using Inform - mnrvovrfc - 07-22-2023 (07-22-2023, 03:47 PM)GareBear Wrote: After I wrote this. I found out in Linux, if the text file is restrictive on who has the read/write privilege to the file then Text Fetch will not show the text in the box. I hope this helps. Yes sometimes Linux is very annoying when one only wants to look at a text file and it comes back with "Permission denied." There are some files in "/etc" and "/var" that require being superuser only to use "cat" or "less" or such other utility, and otherwise the system refuses to allow a regular user to open them with any program. Anyway one has to be careful with using a GUI program like GEdit to open and modify a protected text file. A few text files have "history" in them, such that there are scary warnings to use a particular brand of the famous "vi" editor to deal with them. Such as "visudo" to edit the file that controls what goes on with often-used "sudo" terminal command. That is something else that makes me shake my head about Unix and its descendants. The major thing is the system being unable or unwilling to allow a regular user to change the system time even if it's flatly wrong. And a few systems also being lame about allowing NTP sync enabled or not. On Windows this is not even thought about. |