Well folks, I need to set a standard for the entire system that is like that.
In my case is the vlthumbtrack of xbrowser.
It comes default false xbrowser in all, I would let him true.
from already thank you
Well folks, I need to set a standard for the entire system that is like that.
In my case is the vlthumbtrack of xbrowser.
It comes default false xbrowser in all, I would let him true.
from already thank you
Defina uma diretiva de compilação para o seu projeto e altere a classe com essa diretiva.
Exemplo:
Diretiva -> MEUPROJETO
::vlthumbtrack := .T.
arthursilvestre wrote:Well folks, I need to set a standard for the entire system that is like that.
In my case is the vlthumbtrack of xbrowser.
It comes default false xbrowser in all, I would let him true.
from already thank you
Good morning, I thank everyone's attention.
Sambomb what you said I oughta add prg xbrowse.prg in my project right? But I do not wish it, since I want to avoid that prg's more to be added in my project.
I would like to recompile the lib FiveWin? trough of the source folder? as if someone could give me a light?
thks
#include "fivewin.ch"
#include "xbrowse.ch"
//------------------------------------------------------------------//
CLASS MyBrowse FROM TXBrowse
CLASSDATA lRegistered AS LOGICAL // This is compulsory for derived classes
DATA bColClass INIT { || MyXBrCol() }
METHOD New( oWnd ) CONSTRUCTOR
ENDCLASS
METHOD New( oWnd ) CLASS MyBrowse
Super:New( oWnd )
::lVThumbTrack := .t.
return Self
//------------------------------------------------------------------//
CLASS MyXbrCol FROM TXBrwColumn
ENDCLASSfunction Main()
<code>
SET XBROWSE TO MyBrowse()
<other code>for %%f in (*.prg) do c:\xhb121\bin\harbour %%f /n /ic:\fwh.13.02\include;c:\xhb121\include
for %%f in (*.c) do c:\bcc582\bin\bcc32 -c -Ic:\bcc582\include;c:\xhb121\include %%f
for %%f in (*.obj) do c:\bcc582\bin\tlib fiveh.lib -+ %%f /0 /P32,,Arthur,
If you run that batch file on source/classes, source/function and source/winapi, you will rebuild the library, except some internals modules whose source code is not provided, so you can not erase the lib and rebuild it from scratch, but you can update it as many times as needed.