Dear Group,
Is there a way that let me know Dose my program Run under LB OR LBB?
Regards,
Sarmed
LB OR LBB
-
- Posts: 37
- Joined: Fri Apr 06, 2018 6:27 am
Re: LB OR LBB
Here it is, I found it.
http://www.bbcbasic.uk/lbb/oldforum/lbb ... 1478397198
What is going on? I look like that movie. NY city as it is bright but no people in it at all!!
-----
http://www.bbcbasic.uk/lbb/oldforum/lbb ... 1478397198
What is going on? I look like that movie. NY city as it is bright but no people in it at all!!
-----
Re: LB OR LBB
It's in the Help manual, at the end of the Compatibility section. There it says: "If, exceptionally, the only way to achieve compatibility is to use different code for LB4 and LBB you can test which platform your program is running under as follows:"sarmednafi wrote: ↑Sun Nov 18, 2018 1:56 amIs there a way that let me know Dose my program Run under LB OR LBB?
Code: Select all
if instr(Platform$, "LBB") then
print "Running under LBB"
else
print "Running under LB"
end if
-
- Posts: 37
- Joined: Fri Apr 06, 2018 6:27 am
Re: LB OR LBB
Thank you, Richard.
You are wonderful.
You are wonderful.