Changelog for Visual xHarbour Build 237
April 30th, 2010 — Patrick Mast + Added DataTable:FromAlias() to adopt an open database into a DataTable object
i.e.
USE “C:\xhb\samples\test.dbf” NEW ALIAS “TESTING” SHARED
oData := DataTable( Self )
oData:FromAlias( “TESTING” )
::DataGrid1:DataSource := oData
::DataGrid1:AutoAddColumns()
! Fixed DataTable:Scatter() and Gather() methods
+ Added DataTable aScatter to contain an array with scattered values allowing
users to use such values besides Gathering them. It also allowes users to
modify the values before gathering i.e.
oData:Scatter()
cName := oData:aScatter[1] // cName is “Downey”
oData:Skip()
oData:RecLock()
oData:aScatter[1] := “Smith”
oData:Gather() // save the new record with first value changed
! Fixed FTPClient to allow Connect() after Disconnect()
+ Added DataGrid security to avoid non-object DataSources.
