You can download this class of Manuel Mercado in our blog:
http://www.respuestasintegradas.blogspot.com
Thanks Manuel for your contribution!!
TSBROWSE 7 updated
- jose_murugosa
- Posts: 943
- Joined: Mon Feb 06, 2006 4:28 pm
- Location: Uruguay
- Contact:
TSBROWSE 7 updated
Saludos/Regards,
José Murugosa
FWH + Harbour + Bcc7. Una seda!
José Murugosa
FWH + Harbour + Bcc7. Una seda!
Compatibility
Am I correct that this revision was built with the Borland compiler ?
Is it compatible with xbuilder / xcc ? ( November 2007 release )
Is it compatible with fwh 8.02 ?
Is it compatible with ADS 8 ?
Thank you.
Tim
Is it compatible with xbuilder / xcc ? ( November 2007 release )
Is it compatible with fwh 8.02 ?
Is it compatible with ADS 8 ?
Thank you.
Tim
Tim Stone
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019
-
- Posts: 167
- Joined: Thu Mar 22, 2007 11:24 am
Error on 470
On line METHOD REFRESH(lPaint) :
( ::cAlias )->(Eval( ::bLogicLen ))
NOT ( ::cAlias )->Eval( ::bLogicLen )
The ch-files are hard coded in tsbrowse.prg , tscolumn.prg and debug.prg
Better is to use no path :
Working with a xbp-file , is better to use
# include "fivewin.ch"
instead off "c:\fwh\fivewin.ch"
In step 2 can the include path's be set , so it is possible to test with different fwh versions
Frank
( ::cAlias )->(Eval( ::bLogicLen ))
NOT ( ::cAlias )->Eval( ::bLogicLen )
Code: Select all
METHOD Refresh( lPaint ) INLINE If( ::lFirstPaint == Nil .or. ::lFirstPaint, 0, ( ;
::nLen := If( ::lIsDbf, ( ::cAlias )->(Eval( ::bLogicLen )) , ;
Eval( ::bLogicLen ) ), ::lNoPaint := .F. , Super:Refresh( lPaint ) ) )
Better is to use no path :
Working with a xbp-file , is better to use
# include "fivewin.ch"
instead off "c:\fwh\fivewin.ch"
In step 2 can the include path's be set , so it is possible to test with different fwh versions
Frank
Re: Compatibility
Hi Tim:
Best regards
Manuel Mercado
You are RightTimStone wrote:Am I correct that this revision was built with the Borland compiler ?
Don't know, I don't have nor use itTimStone wrote:Is it compatible with xbuilder / xcc ? ( November 2007 release )
Yes in my tests it's running okTimStone wrote:Is it compatible with fwh 8.02 ?
Don't know I don't use ADS, every ADS stuff in TSBrowse has been done by other TSBrowse contributors.TimStone wrote:Is it compatible with ADS 8 ?
Best regards
Manuel Mercado
Hi Silvio:
Best regards.
Manuel Mercado
ps I'm revising TSButton about your transparency request, but it'll take a while because TSButton is now in major surgery
See SBtest.prg sample 7 in TSBrowose\Samples there you have a VerCe file to build the executableSilvio wrote:where i can found a sample with trasparent sbrowse as the window you insert on this forum ?
Best regards.
Manuel Mercado
ps I'm revising TSButton about your transparency request, but it'll take a while because TSButton is now in major surgery
I have added some things to TSbrowse and was wondering if you would like to add them to the official version.
DATA bLDblClickHeader // custom function for header (change order etc)
DATA bAddColumn // add/ins column block
DATA lColChanged // if a column was moved, added, inserted, freeze changed, or sized. I use this to know if the browse information needs to be saved.
// Right click header additions.
Insert Column - If bAddColumn defined
Add Column - If bAddColumn defined
Freeze Column - If .not. ::lLockFreeze
Unlock Freeze Column - If .not. ::lLockFreeze .and. ::nFreeze > 0
// Add RMDBFCDX to cRDDName list (Same syntax as Comix)
Thanks,
I really like the browser.
Gale
DATA bLDblClickHeader // custom function for header (change order etc)
DATA bAddColumn // add/ins column block
DATA lColChanged // if a column was moved, added, inserted, freeze changed, or sized. I use this to know if the browse information needs to be saved.
// Right click header additions.
Insert Column - If bAddColumn defined
Add Column - If bAddColumn defined
Freeze Column - If .not. ::lLockFreeze
Unlock Freeze Column - If .not. ::lLockFreeze .and. ::nFreeze > 0
// Add RMDBFCDX to cRDDName list (Same syntax as Comix)
Thanks,
I really like the browser.
Gale