LB Booster
General >> Announcements >> LB Booster version 1.84 released
http://lbb.conforums.com/index.cgi?board=announcements&action=display&num=1339106478
LB Booster version 1.84 released
Post by Richard Russell on Jun 7th, 2012, 10:01pm
I'm pleased to announce the release of LB Booster version 1.84; it may be downloaded from here:
http://www.lbbooster.com/LBB.exe (IDE/compiler)
http://www.lbbooster.com/LBBRUN.exe (optional runtime engine)
This new version addresses a few issues which have been identified since the last release, including:
The DATE$ function has improved compatibility with LB4, in particular it will accept many more (undocumented) input formats such as DATE$("Feb/29/2012"). DATE$ may also be used for validation, so for example DATE$("Feb/29/2011") returns zero because 2011 was not a leap year.
INPUT# and INPUTTO$() have improved compatibility with LB4 when the file being read has non-standard line terminations (for example LFCR rather than CRLF).
LBB is no longer confused by a variable called Tab or Tab$ appearing in a PRINT statement.
TRAPCLOSE now works correctly when the destination is a 'numeric' label, such as "trapclose [700]".
File specifications may now contain spaces following a directory delimiter, for example "C:\ path\ filename" (where there is a space after the backslash).
LBB will now accept assigning a numeric variable to a structure, without reporting a 'Type mismatch' error, for example 'numvar = mystruct.struct'.
AS STRUCT is now treated identically to AS PTR, and the two may be used interchangeably. This appears to be the case in LB4.
AS HANDLE is now accepted in structure declarations and CALLDLL.
A bug which sometimes affected the use of BYREF parameters has been fixed.
Richard.
Re: LB Booster version 1.84 released
Post by James on Jun 20th, 2012, 2:41pm
Thanks Richard!