What's new in FiveWin 2.1b FiveWin 2.1b
* New: Method Sections on INI objects to retrieve all the sections available on a INI file. It returns an array with all the sections found.
* Bug: Get operations on INI objects perform a undesired Set operation too when no Key was found
* Bug: Incorrect define on DLL.CH file
* Bug: MemUsed() was not properly restored on some memory operations. It has been fixed, so now it shows the right consumed memory.
* New: Standard Windows trees (from CommCtrl.dll) are working on all our developemnt products: Fivewin, Fivewin for Harbour and Fivewin++. Take a look at sample Testree.prg. The previous lack of event processing is now fixed.
Note: Trees constructed with Fivewin (16 bits) do not work on WinNT and Win2000 systems. We do recommend FWH or FW++ for those operating systems.
* New: Complete redesign of accelarators. Now they work for all the compilers: Clipper, xBase++ and Harbour. You can even create your own stand alone accelerators:
#define FSHIFT 4 #define FCONTROL 8 #define FALT 16 local oAcc := TAccTable():New() oAcc:Add( Asc( "A" ), FCONTROL, <oBtn>:nId ) oAcc:Activate()
To include a new accelerator to current accelarator menu table:
oWnd:oMenu:oAccTable:Add( <nVirtKey>, <nVKFlags>, <nCommandID> ) oWnd:oMenu:oAccTable:Activate()
* Bug: Click events on Msgitem controls did not pass to the codeblock the row and column parameters where the mouse was clicked.
* Bug: Cancel clause did not work correctly on some circunstances
* Bug: Function Floodfill() did not work due the absence of some parameters. The new syntax is: FLOODFILL( hDC, nCol, nRow, nDelimColor, nNewColor ) --> lSuccess
* Bug: Wrong TABSTOP behavior on Btnbmp controls with no WS_TABSTOP style
* Bug: Wrong focus behaviour on method EditCol() on class TWbrowse.
* Bug: Incompatibility found with Clipper 5.2 because TCBrowse class used the function OrdKeyCount() which is only available on Clipper 5.3
* Bug: Method Update did not work correctly with folders. Back |