Search found 213 matches

by guest
Sun Aug 17, 2025 9:05 pm
Forum: General Board
Topic: Online Safety Act
Replies: 0
Views: 65

Online Safety Act

The UK's Online Safety Act , which came into effect earlier this year, covers forums as well as other online services like social media platforms. Unfortunately the requirements on forums are impossible for a small one- or two-man-administered forum to comply with. Some forum owners have opted to cl...
by guest
Wed Aug 13, 2025 7:21 pm
Forum: General Board
Topic: Forbidden
Replies: 1
Views: 212

Re: Forbidden

I am trying to submit a post that includes LBB Code, but all I get when I try to Review or Submit all I get is "Forbidden". This will certainly have been caused by the recent DDoS attack on phpBB forums: https://www.phpbb.com/community/viewtopic.php?t=2662519 . I hadn't realised that this...
by guest
Mon Aug 04, 2025 9:12 pm
Forum: General Board
Topic: LB -> LBB -> BBCSDL -> Linux
Replies: 1
Views: 852

Re: LB -> LBB -> BBCSDL -> Linux

If I’m understanding the docs correctly. I can write a program in LB port it to LBB, convert it to BBC Basic then make (whatever the equivalent to an EXE file is on Linux) standalone for Linux in BBCSDL? It very much depends on what kind of program. It says this in the description of how LBB works:...
by guest
Tue Jun 24, 2025 10:22 am
Forum: Liberty BASIC Language
Topic: function to create structure with passed name
Replies: 4
Views: 8175

Re: function to create structure with passed name

I noticed in bbc basic manual, that you can use once defined structure as a prototype for new structures, and hoped that something similar might work in LBB Although you can use a previously-defined structure as a 'prototype' for a new structure, that still doesn't help with creating a structure wi...
by guest
Mon Jun 23, 2025 8:19 pm
Forum: Liberty BASIC Language
Topic: function to create structure with passed name
Replies: 4
Views: 8175

Re: function to create structure with passed name

Is it possible, without a conversion table of some sort in an array, to pass a name of structure to be created what I mean is it possible to accomplish something of the sort a$ = "something" : struct a$, x as etc, etc by 'simple' means I don't know of any 'simple' way. Creating a variable...
by guest
Sun Jun 08, 2025 9:47 am
Forum: Debugger
Topic: "Missing , at line 0"
Replies: 1
Views: 7430

Re: "Missing , at line 0"

How do I find my mistake in my code when the error message "Missing , at line 0" appears at program launch? The error is occurring in an 'unnumbered' line (line 0) and I would not expect there to be many of those in your program: LBB normally allocates line numbers, even if your original ...
by guest
Sun May 11, 2025 5:38 pm
Forum: General Board
Topic: Programming with AI
Replies: 2
Views: 8444

Re: Programming with AI

If you happen to have an X account you can use Grok for free but it is limited to 18 questions per every 2 hours. Try it out, you’ll be amazed! I mainly use DeepSeek for writing - and reviewing - code; it's free and unlimited (at the moment). It's pretty competent at BBC BASIC but obviously not as ...
by guest
Mon Apr 07, 2025 8:57 pm
Forum: Liberty BASIC Language
Topic: bbc graphics comands with lbb graphics window
Replies: 2
Views: 6377

Re: bbc graphics comands with lbb graphics window

Adamkonrad wrote: Mon Apr 07, 2025 8:32 pm Is it possible to direct bbc graphics commands to graphic window created in LBB?
No, a graphics window isn't a BBC BASIC window.
Especially to read the POINT color value?
You could presumably use the GetPixel Windows API function for that.
by guest
Mon Apr 07, 2025 8:48 pm
Forum: Liberty BASIC Language
Topic: Reading metadata (id3 tag) of *.mp3 files
Replies: 6
Views: 12358

Re: Reading metadata (id3 tag) of *.mp3 files

Edit, no, of course not, it stays as a UTF string until we change it. But in LBB it will display normally. "UTF string" is ambiguous. You need to specify whether it's UTF-8, UTF-16LE, UTF-16BE, UTF-32LE or UTF-32BE. BBC BASIC (which is what LBB is using under the hood) uses UTF-8 internal...
by guest
Sun Mar 02, 2025 10:21 am
Forum: Compiler
Topic: LB window not closing on program exit
Replies: 2
Views: 12021

Re: LB window not closing on program exit

Is my assumption about the -A parameter incorrect? LB Booster (LBB.exe) and your 'compiled' BASIC program run in entirely separate Windows processes. This is valuable, because it means that however badly your BASIC program might crash, it cannot bring down the LBB process with it (with the loss of ...