Search found 236 matches
- Sun Mar 29, 2026 4:43 pm
- Forum: Compiler
- Topic: LBB on Windiw11 with Intel Ultra 9 processor
- Replies: 3
- Views: 48
Re: LBB on Windiw11 with Intel Ultra 9 processor
I downloaded the LBB.exe file from https://www.bbcbasic.co.uk/lbb/ (16:33:26 on March 29, 2026) Check directly what version of BBC BASIC your installed copy of LBB is using, by running this one-line program: !*HELP It should output: BBC BASIC for Windows runtime engine 6.16a if it is the latest ver...
- Sun Mar 29, 2026 11:55 am
- Forum: Compiler
- Topic: LBB on Windiw11 with Intel Ultra 9 processor
- Replies: 1
- Views: 49
- Sat Mar 28, 2026 3:34 pm
- Forum: Announcements
- Topic: LB Booster build updated
- Replies: 0
- Views: 35
LB Booster build updated
I have re-built LB Booster using the latest version of BBC BASIC for Windows to ensure that it is as up-to-date as possible. Since this is just a re-build the version number and date have not been changed, but you can confirm that you have the latest version by looking at the properties of the execu...
- Mon Dec 01, 2025 1:06 am
- Forum: General Board
- Topic: Win 11 problems
- Replies: 17
- Views: 21646
Re: Win 11 problems
10001 .10001 FOR I = 1 TO 10 : WHILE 0.10001E19.0001 EXIT FOR : ENDWHILE 10001 .10001 PRINT FN_str$(I) 10001 .10001 NEXT I 10001 .10001 PROC_end Maybe, you can make sense out of this. I wouldn't even try! The BBC BASIC for Windows interpreter is written in assembly language, making it even more dif...
- Sun Nov 30, 2025 12:50 pm
- Forum: General Board
- Topic: Win 11 problems
- Replies: 17
- Views: 21646
Re: Win 11 problems
I just downloaded Windows 11 for ARM on VMWARE FUSION for Apple M3 silicon. I can not make LBB run properly while LB is running just fine. Is there a trick to make LBB run on this environment? TL;DR; No, it's unlikely that there is anything you can do, since the fault lies in VMWare not in LBB. :( ...
- Tue Nov 04, 2025 2:23 pm
- Forum: General Board
- Topic: AI Prompt Enginering with LBB
- Replies: 3
- Views: 5322
Re: AI Prompt Enginering with LBB
Can we send prompts to Gemini or ChatGPT from LBB under program control and receive the response? If TLS1.2 connection will be needed, can we do this with LBB? The requirement for SSL encryption is indeed probably the key stumbling block to accessing a ChatBot's API from LBB. It's possible, but it ...
- Tue Nov 04, 2025 2:05 pm
- Forum: General Board
- Topic: MainWin
- Replies: 5
- Views: 8300
Re: MainWin
LB doesn't seem to have the same restriction. Indeed: LBB's mainwin is completely different from LB's mainwin. LBB's mainwin is in fact BBC BASIC 's main output window; unlike most other aspects of LBB it does not attempt to emulate Liberty BASIC but rather retains the native capabilities of BBC BA...
- Sun Nov 02, 2025 8:23 pm
- Forum: General Board
- Topic: MainWin
- Replies: 5
- Views: 8300
Re: MainWin
I didn't explain myself very well. Let's say that the MainWin will display a maximum of 90 rows at any one time, can more rows than this be displayed and scrolled, displaying 90 of the rows, without losing any of the rows. If not is there any way around it? Obviously, what is displayed in the (say)...
- Sat Nov 01, 2025 8:22 pm
- Forum: General Board
- Topic: MainWin
- Replies: 5
- Views: 8300
Re: MainWin
It appears that MainWin can only display 88 rows. Is this correct and if so is there any way of increasing this number. It's limited by the maximum height of the backing bitmap, which is 1440 pixels. If each row is 16 pixels high that would correspond to 90 rows for example. The only way to increas...
- Sat Oct 11, 2025 8:33 pm
- Forum: Liberty BASIC Language
- Topic: Numeric entry with commas into Textbox
- Replies: 4
- Views: 14092
Re: Numeric entry with commas into Textbox
Actually, I don't know how to change the text direction from left to right to right to left using LB or LBB. In LBB's mainwin you can switch text direction using embedded BBC BASIC code (e.g. using !VDU 23,16,2;0;0;0;) but I'm guessing that's not what you mean. In Windows controls the text directio...