View Full Version : New features ready for the next version (1.0.8.2)
ErosOlmi
27-12-2005, 21:58
What will be present in next thinBasic version 1.0.8.2:
[list] Add: CONTROL POST
Add: CONTROL REDRAW
Add: DIALOG POST
Add: DIALOG REDRAW
Fix: DIALOG FONT error. PointSize not parsed correctly.
Add: DIALOG UNITS
Add: DIALOG PIXELS
Improve: DIALOG NEW has now the option to specify the unit of measure to be used: PIXELS or UNITS. Default one is UNITS
Add: PeekMessage
Add: XPRINT
Add: XPRINT_ATTACH
Add: XPRINT_FORMFEED
Add: XPRINT_Close
[/list:u]
ErosOlmi
04-01-2006, 23:13
To get a preview of thinBasic version 1.0.8.2 please use the following url:
http://www.thinbasic.com/index.php?name=CmodsDownload&file=index&req=getit&lid=16
Please post here any bug you discover in order to clean before official release.
Thanks
Eros
ErosOlmi
05-01-2006, 13:45
Updated again.
String variables can be passed BYREF to user defined functions.
An example:
dim a, b, c as string
a = "AAA"
b = "BBB"
c = "CCC"
changethemall(a, b, c)
msgbox 0, a & $crlf & b & $crlf & c
function ChangeThemAll(byref sA as string, byref sB as string, byref sC as string) as long
ChangeSingle(sA)
ChangeSingle(sB)
ChangeSingle(sC)
end function
function ChangeSingle(byref s as string) as long
s += "_" & s
end function
ErosOlmi
05-01-2006, 17:57
New update.
Any numeric or string variables can be passed BYREF to functions.
Also array elements can be passed BYREF
Full array variables still not supported.
Some fix into Dialog message pump
Eros
ErosOlmi
06-01-2006, 03:44
Updated again.
A problem in numeric parameter passed BYREF.
New TBGL module by Psch
ErosOlmi
06-01-2006, 22:45
Updated.
Little improvement into richedit example.
ErosOlmi
06-01-2006, 23:56
Updated.
Added support equates and a new example for Progress Bar control
See ..thinBasic\SampleScripts\UI\ProgressBar\ directory
ErosOlmi
07-01-2006, 00:33
Download url updated to:
http://www.thinbasic.com/index.php?name=CmodsDownload&file=index&req=getit&lid=16
ErosOlmi
07-01-2006, 13:49
Updated.
Little change into ProgressBar example to demonstrate different kind of PBs.
ErosOlmi
07-01-2006, 21:45
Updated.
Problem in UI module were effecting %GL_TRIANGLES equate into TBGL module.
ErosOlmi
09-01-2006, 18:24
Updated.
An error into Max Number of Variables per script set to 20000 instead of 1024 was slowing down script execution. Now ok.