Search found 193 matches
- Tue Apr 09, 2024 10:41 am
- Forum: General Board
- Topic: A file delete it's self. How to?
- Replies: 8
- Views: 2513
Re: A file delete it's self. How to?
It was an old shortcuts I was using before you made the changes. Everything's moved. I no longer use the old hosting service (meirhosting.net) because they had a monthly bandwidth limit and occasionally that was exceeded, causing the site to become unavailable. I've moved to a host with no formal b...
- Sun Mar 17, 2024 3:31 pm
- Forum: General Board
- Topic: A file delete it's self. How to?
- Replies: 8
- Views: 2513
Re: A file delete it's self. How to?
I spent all yesterday trying to get logged in the forum < https://lbb.bbcbasic.net/forum/ > I completely failed... Then I log in using < https://lbbooster.com/forum/ > its worked ... I think this has to do with the CAPTCHA. When you log into the forum, there is a Google Invisible reCAPTCHA to check...
- Wed Mar 06, 2024 1:59 pm
- Forum: General Board
- Topic: A file delete it's self. How to?
- Replies: 8
- Views: 2513
Re: A file delete it's self. How to?
I just wrote a tiny program saying Beep. After that I want the program to delete itself. Is there any away to do that? As this is a general Windows question, and not specific to LBB (or LB), did you try Google? A search finds several hits for me. The simplest approach found by Google seems to be to...
- Wed Jan 31, 2024 8:02 pm
- Forum: General Board
- Topic: Posting test
- Replies: 1
- Views: 1588
Posting test
This is just a test to check that I can post a new topic.
- Sun Jan 07, 2024 6:42 pm
- Forum: Announcements
- Topic: Forum moved to new host
- Replies: 1
- Views: 2152
Re: Forum moved to new host
As part of a major reorganisation of my various websites and hosting providers, I have moved this LB Booster Forum to a new host. I should add that the LB Booster wiki has also been moved to a new host, but again it can still be accessed from https://lbbooster.com/wiki so you shouldn't really be aw...
- Sun Jan 07, 2024 6:18 pm
- Forum: Announcements
- Topic: Forum moved to new host
- Replies: 1
- Views: 2152
Forum moved to new host
As part of a major reorganisation of my various websites and hosting providers, I have moved this LB Booster Forum to a new host. Hopefully you won't notice any difference, it can still be reached at https://lbbooster.com/forum, but if any issues do arise from this move please let me know.
- Fri Dec 22, 2023 10:55 pm
- Forum: BASIC code examples
- Topic: Chess Version 2.5
- Replies: 7
- Views: 13629
- Thu Dec 21, 2023 12:45 pm
- Forum: BASIC code examples
- Topic: Chess Version 2.5
- Replies: 7
- Views: 13629
Re: Chess Version 2.5
as to the issue, that might be it FOR difference with JB/LB4 If this is indeed the 'issue', a simpler (more localised, and therefore more understandable and less risky) fix might be this: tempMove = Move for m=0 to tempMove This ensures that the 'loop limit' doesn't get modified within the loop.
- Wed Dec 20, 2023 5:07 pm
- Forum: Compatibility with LB4
- Topic: FOR difference with JB/LB4
- Replies: 2
- Views: 11493
Re: FOR difference with JB/LB4
This code n=10 for i = 1 to n print i if i = 5 then n = 0 next types 10 numbers at LB/JB, but only 5 at LBB. Changing either the loop variable or the limit value inside a FOR loop is bad practice. :shock: BASICs differ in how FOR loops are implemented; for example in some the loop variable is teste...
- Mon Dec 18, 2023 2:17 pm
- Forum: BASIC code examples
- Topic: Chess Version 2.5
- Replies: 7
- Views: 13629
Re: Chess Version 2.5
This is a link to the original .zip, you will need to amend the .bas, insert the two lines that are marked "'some difference between JB abd LBB" I am somewhat confused, because chess.bas does not even compile successfully in LBB, it is reporting a ' Handle #1 used for incompatible devices...