Changelog for Visual xHarbour

2010-07-26 00:00 UTC-0800 Augusto Infante
! Fixed FolderList:SysFolder/Folder assign to diff folders from streams
! Fixed GPF assigning a Folder.
+ Added FolderList:OpenFile()
+ Added FolderList:SelFolder to diff from FolderList:SelFile
i.e.
METHOD FolderList1_OnReturn( Sender ) CLASS Form1
IF !EMPTY( Sender:SelFolder )
Sender:Folder := Sender:SelFolder
ELSE
Sender:OpenFile()
ENDIF
RETURN 0

Changelog for Visual xHarbour

2010-07-21 00:00 UTC-0800 Augusto Infante
! Fixed TabStrip border overlapping
! Fixed TabStrip’s tab item corrupted diagonal border

Changelog for Visual xHarbour

2010-07-21 00:00 UTC-0800 Augusto Infante
! Fixed wrong docking in “Form Designer” page
! FolderList and FolderTree Renamed properties RootFolder to SysFolder
and InitialPath to Folder the old properties remain to avoid RTE
but users should change their code to match new properties.

Changelog for Visual xHarbour

2010-07-20 00:00 UTC-0800 Augusto Infante
! Fixed ColorScheme for Aero based OS
* Replaced old flat TabControls with new TabStrip
! Moved Sources and Forms TabStrips to the bottom.
! Fixed all color assignments
! Started to prepare for 3.o
! Fixed FolderList update notification. Explorer notifies the folder of active
file actions and FolderList updates the current view.

Changelog for Visual xHarbour

2010-07-18 00:00 UTC-0800 Augusto Infante
! Fixed ListView’s ViewStyle property to allow runtime assignment.
! Fixed DataTable:DataConnector compatibility error to assign SqlConnector
! Optimized ShortcutKey object.
! Fixed EditBox RTE when image is attached
* Changed mouse cursor to LinkSelect (hand) when hovering the image.
! Fixed EditBox + DataSource => dropdown covered by sibling control
! Fixed FolderList OnClick event not fired
! Fixed bug in FolderList control when changing the System RootFolder
! Fixed bug redocking controls when maximizing/restoring forms

2010-07-17 00:00 UTC-0800 Augusto Infante
! Fixed EditBox/MaskEdit bug typing characters using the ALT key

Changelog for Visual xHarbour

2010-07-02 00:00 UTC-0800 Augusto Infante
+ Added ColorScheme property to TabControl’s TabStripStyle to override the default gradient with any windows scheme
+ Added new “TabStripStyle” to TabControl’s component. This way we can have these types of tabs:
image002

Changelog for Visual xHarbour

2010-06-06 00:00 UTC-0800 Augusto Infante
! Fixed RTE opening projects containing Imagelists

Changelog for Visual xHarbour Build 241

+ Added backward compatibility for projects with DataConnetor components
! Fixed ActiveX controls’ Visible property (WebBrowser included)
! Fixed ObjectTree’s initial project name

Changelog for Visual xHarbour build 240

! Fixed TreeView AfterSelect event
! Fixed default LinkLabel underline

Changelog for Visual xHarbour Build 237

+ 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.