June 2015
=========
Important: FWH 15.06 supports Bcc 7 and does not support Bcc 5.82
* Enhancement: Class TEdit now supports cue banner and more.
Please review samples\Testedt2.prg:
viewtopic.php?p=178955#p178955
Please add this code to your manifest file to have cue banners
support:
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
many thanks to Antonino!
* Enhancement: Class TMsgBar was drawing a Gripper but it was not
using it. Now it is ok thanks to Antonino!
viewtopic.php?f=22&t=30993
* Enhancement: samples\ListVie.prg is improving thanks to Antonino!
viewtopic.php?p=178415#p178415
* New: samples\ListVie.prg using a TListBox and drag & drop files.
Many thanks to Silvio!
* New: Class TListViewItem Methods End() and SetText().
* New: functions LVDELETEITEM() and LVSETITEMTEXT() used by Class
TListViewItem.
* Enhancement: function cWinVersion() now returns 10 for Windows 10.
* New: function IsWindows10() --> lYesNo
* Enhancement: xbrowse.prg calls to OleDefaultArg() are replaced by FWH
function AdoDefault(), since older versions of Harbour did not have the
function OleDefaultArg()
* Enhancement: Class TCheckBox Method Redefine() was missing DEFAULT lUpdate
to .F.. Now it is ok:
viewtopic.php?p=177731#p177731
many thanks to Antonino!
* Fix: function SetWindowThem() was not properly working. Now it is ok:
viewtopic.php?p=177758#p177758
many thanks to Antonino!
New example FWH\samples\themes.prg
* Fix: In FWH64 there were some errors in treeview.c. Now it is ok.
* Fix: Class TListView was defaulting to an array of prompts that caused
a wrong behavior. Now it is ok:
viewtopic.php?p=177759#p177759
many thanks to Antonino!
* Enhancement: Class TImageList Method New(), call to low level Windows
API function required a different parameter ILC_COLOR32:
viewtopic.php?p=177759#p177759
many thanks to Antonino!
* Enhancement: XBrowse.prg. Does not require freeimage.dll for most commonly
used imagetypes like BMP,ICO,PNG,GIF,JPG,TIF whether used as file ref or
image data. It is not needed to provide freeimage.dll along with the
application. In case other image types are used in the program, freeimage.dll
is used only if present and does not raise an error.
* FreeImage.Dll: No more required along with the Exe, as long as the
application does not use any image file/buffer/resource of image formats
other than BMP, ICO, PNG, GIF, JPG, TIF.
However TImage class continues to use FreeImage.dll. The new TXImage class
does not require this dll for common image formats.
The dll is required along with the application only when TImage class is
used in the application or any image format other than the above
formats are used in the application.
* Fix: TTxtEdit.prg: Fixed runtime error when going to previous or
next line if no font is explicitly set.
* FW_AdoExportToDBF() uses "DBFCDX". If DBFCDX RDD is not linked,
a message is displayed and the export is not performed.
* Enhancement: XBrowse: Now it is possible to assign a multi-dim array
as oCol:aEditListTxt during runtime also.