Hola Antonio,
Me gustaria saber si es posible adquirir FW24 y cual seria su costo, para efectos didacticos.
Atento a tus comentarios
Fivewin for Harbour 2.4
=======================
* All FWH PRG classes have been recompiled due the OPCODE changes
on Harbour system. This new version is not compatible with any
official Habour version prior to version 41. Official version 41
is not available yet, but the Harbour binaries from our web site
do work correctly with this new version.
* Improved GetHostByAddress() for 32 bits. Many thanks
to Jorge Mason.
* Fixed: Pressing on the "?" icon on a dialog box and
then pressing on a control it is working ok now (invokes
Method HelpTopic) for 32 bits.
* Improved: Syntax highlight support for Class TRichEdit
only for 32 bits apps. It allows user defined tokens to
highlight. You may review samples\TestRich.prg for a working
sample.
We highly recommend the use of this class since is completely usable.
* New: Class DateTimePicker. This news class uses the standard DateTime
picker control of Windows 32 bits API (Commoncontrols.dlg). This
control only works on Fivewin for Harbour. There is a new include
file (DTPICKER.CH) to create this kind of control with the typical
syntax of all Fivewin controls:
@ <nRow>, <nCol> DTPICKER [ <oDTPicker> VAR ] <uVar> ;
[ <dlg: OF, WINDOW, DIALOG> <oWnd> ] ;
[ VALID <ValidFunc> ] ;
[ <color:COLOR,COLORS> <nClrFore> [,<nClrBack>] ] ;
[ SIZE <nWidth>, <nHeight> ] ;
[ FONT <oFont> ] ;
[ <design: DESIGN> ] ;
[ CURSOR <oCursor> ] ;
[ <pixel: PIXEL> ] ;
[ MESSAGE <cMsg> ] ;
[ <update: UPDATE> ] ;
[ WHEN <uWhen> ] ;
[ ON CHANGE <uChange> ] ;
[ <help:HELPID, HELP ID> <nHelpId> ]
REDEFINE DTPICKER [ <oDTPicker> VAR ] <uVar> ;
[ ID <nId> ] ;
[ <dlg: OF, WINDOW, DIALOG> <oDlg> ] ;
[ <help:HELPID, HELP ID> <nHelpId> ] ;
[ <color: COLOR,COLORS> <nClrFore> [,<nClrBack>] ] ;
[ FONT <oFont> ] ;
[ CURSOR <oCursor> ] ;
[ MESSAGE <cMsg> ] ;
[ <update: UPDATE> ] ;
[ WHEN <uWhen> ] ;
[ VALID <uValid> ] ;
[ ON CHANGE <uChange> ]
Very Important:
In order to use it from resources you MUST indentify the control as:
'SysDateTimePick32'
* Improved: Classes TTreView and TTVItem have been tremendously improved:
New methods on class TTreeView:
- GetSelected() -> oItem
- Select( oItem )
- DeleteAll()
- HitTest( nRow, nCol )
New datas on class TTVItem:
- cPrompt
- nImage
New method on class TTVItem:
- DeleteBranches()
Actually this two classes make the standard TreeView window completely
usable, but only for FWH.
* New: New Browse class TXBrowse (This class has been available for some
tiem to FTDN users).
This new class is a complete written from scratch browse control with a
lot of new features not found on previous controls.
We suggest you take a look at the document "TxBrowse control for
Fivewin for Harbour.doc" on the "Manual" directory and the sample
TestXbrw.prg.
Only for this new class is worth the upgrading to version 2.4
Enhancements and bugs fixed since July 2002:
- New data aArrayData for easy access to the browse data when using arrays
- New data lFastEdit for quick editing (do not need to even push the
Return key)
- New method SelectCol( oCol )
- Bug found en refresh method is fixed
- New method GetVisibleCols()
- Fix of incorrect display after editing
- Fix for some col and row divider styles
- Incorrect display of listboxes on editing
- Column editing is now working smoothly
Fivewin 2.4
===========
* IMPORTANT NOTE FOR FWH users:
All your Harbour source files (.PRG) even the ones of your own
libraries MUST BE RECOMPILED with the new Harbour compiler
included on your FWH product.
* Fivewin documentation updated with all the new features
* All FWH PRG classes have been recompiled due the OPCODE changes
on Harbour system. This new version is not compatible with any
official Habour version prior to version 41. Official version 41
is not available yet, but the Harbour binaries from our web site
do work correctly with this new version.
* Improved GetHostByAddress() for 32 bits. Many thanks
to Jorge Mason.
* Fixed: Pressing on the "?" icon on a dialog box and
then pressing on a control it is working ok now (invokes
Method HelpTopic) for 32 bits.
* Improved: New methods SaveAsRTF() and LoadAsRTF() for class
TRichEdit only for 32 bits apps. You may review
samples\TestRich.prg for a working sample.
* Improved: Syntax highlight support for Class TRichEdit
only for 32 bits apps. It allows user defined tokens to
highlight. You may review samples\TestRich.prg for a working
sample.
We highly recommend the use of this class since is completely usable,
the only important feature missing is printing as a RTF but we
presume it will be ready on next 2.4 revision.
* New: Class DateTimePicker. This news class uses the standard DateTime
picker control of Windows 32 bits API (Commoncontrols.dlg). This
control only works on Fivewin for Harbour. There is a new include
file (DTPICKER.CH) to create this kind of control with the typical
syntax of all Fivewin controls:
@ <nRow>, <nCol> DTPICKER [ <oDTPicker> VAR ] <uVar> ;
[ <dlg: OF, WINDOW, DIALOG> <oWnd> ] ;
[ VALID <ValidFunc> ] ;
[ <color:COLOR,COLORS> <nClrFore> [,<nClrBack>] ] ;
[ SIZE <nWidth>, <nHeight> ] ;
[ FONT <oFont> ] ;
[ <design: DESIGN> ] ;
[ CURSOR <oCursor> ] ;
[ <pixel: PIXEL> ] ;
[ MESSAGE <cMsg> ] ;
[ <update: UPDATE> ] ;
[ WHEN <uWhen> ] ;
[ ON CHANGE <uChange> ] ;
[ <help:HELPID, HELP ID> <nHelpId> ]
REDEFINE DTPICKER [ <oDTPicker> VAR ] <uVar> ;
[ ID <nId> ] ;
[ <dlg: OF, WINDOW, DIALOG> <oDlg> ] ;
[ <help:HELPID, HELP ID> <nHelpId> ] ;
[ <color: COLOR,COLORS> <nClrFore> [,<nClrBack>] ] ;
[ FONT <oFont> ] ;
[ CURSOR <oCursor> ] ;
[ MESSAGE <cMsg> ] ;
[ <update: UPDATE> ] ;
[ WHEN <uWhen> ] ;
[ VALID <uValid> ] ;
[ ON CHANGE <uChange> ]
Very Important:
In order to use it from resources you MUST indentify the control as:
'SysDateTimePick32'
Consult the sample TESTDTP.PRG on samples directory.
* Improved: Classes TTreView and TTVItem have been tremendously improved:
New methods on class TTreeView:
- GetSelected() -> oItem
- Select( oItem )
- DeleteAll()
- HitTest( nRow, nCol )
New datas on class TTVItem:
- cPrompt
- nImage
New method on class TTVItem:
- DeleteBranches()
Actually this two classes make the standard TreeView window completely
usable, but only for FWH.
* New: New Browse class TXBrowse (This class has been available for some
time to FTDN users).
This new class is a complete written from scratch browse control with a
lot of new features not found on previous controls.
We suggest you take a look at the document "TxBrowse control for
Fivewin for Harbour.doc" on the "Manual" directory and the sample
TestXbrw.prg.
Only for this new class is worth the upgrading to version 2.4
Enhancements and bugs fixed since July 2002:
- New data aArrayData for easy access to the browse data when using arrays
- New data lFastEdit for quick editing (do not need to even push the
Return key)
- New method SelectCol( oCol )
- Bug found en refresh method is fixed
- New method GetVisibleCols()
- Fix of incorrect display after editing
- Fix for some col and row divider styles
- Incorrect display of listboxes on editing
- Column editing is now working smoothly
/*
!short: FiveWin main Header File */
#ifndef _FIVEWIN_CH
#define _FIVEWIN_CH
#define FWCOPYRIGHT "(c) FiveTech, 1993-2002"
#ifdef __HARBOUR__
#define FWVERSION "FWH 2.4 - November 2002"
#define FWDESCRIPTION "FiveWin for Harbour"
#xtranslate Browse( => WBrowse( // to avoid conflicts with Harbour functions
#xtranslate SetCursor( => WSetCursor( // to avoid conflicts with Harbour functions
#xtranslate __Keyboard( => ___Keyboard( // to avoid conflicts with Harbour functions
#xtranslate LastKey( => _LastKey( // to avoid conflicts with Harbour functions
#else
#ifdef __XPP__
#define FWVERSION "FiveWin++ 2.4 - November 2002"
#define FWDESCRIPTION "FiveWin++ for Xbase++ 1.8"
#else
#define __CLIPPER__
#define FWVERSION "FiveWin 2.4 - November 2002"
#define FWDESCRIPTION "FiveWin for Clipper"
#endif
#endif
Compuin wrote:Facilítame la por favor
Return to FiveWin para Harbour/xHarbour
Users browsing this forum: Google [Bot] and 39 guests