Hi,
I want to use tbrowse, how to use it with fivewin?
Regards,
Julian
Hi,
I want to use tbrowse, how to use it with fivewin?
Regards,
Julian
@ 1, 1 LISTBOX oLbx FIELDS Clientes->Nombre, AllTrim( Clientes->Direccion ),;
Clientes->Telefono,;
Str( Clientes->Edad, 3 ) ;
HEADERS "Name", "Address", "Phone", "Age" ;
FIELDSIZES 222, 213, 58, 24 ;
SIZE 284, 137 OF oDlg// Using Windows 7 row selection colors in xbrowse
#include 'fivewin.ch'
#include 'xbrowse.ch'
function Main()
local oDlg, oBrw, oFont
USE CUSTOMER ALIAS CUST
DEFINE FONT oFont NAME 'Tahoma' SIZE 0, -14
DEFINE DIALOG oDlg SIZE 640,440 PIXEL ;
FONT oFont TITLE 'XBrowse Gradient Rows'
@ 10, 10 XBROWSE oBrw OF oDlg SIZE 300, 200 PIXEL ;
AUTOCOLS ALIAS 'CUST' NOBORDER
oBrw:nMarqueeStyle = MARQSTYLE_HIGHLWIN7
oBrw:CreateFromCode()
ACTIVATE DIALOG oDlg CENTERED
RELEASE FONT oFont
return nil#xcommand @ <nRow>, <nCol> [ COLUMN ] XBROWSE Â <oBrw> Â ;
        [ [ FIELDS ] <Flds,...>] ;
        [ SELECT <cField> FOR <uValue1> [ TO <uValue2> ] ] ...Hi Antonio,
Can I get a sample xbrowse with select command?
Regards,
Julian
Hi Antonio,
Could you share xbrowse documentation? I search in fivewin help but not found.
Regards,
Julian
Julian
There is a wealth of information contained in the \samples folder .. some good xBrowse examples are :
any sample that starts with "xb"
TestXbrw.prg
TestXbr3.prg
You can compile any of the above using Build.bat ( harbour ) or BuildX.bat ( xharbour ) from the command prompt .. all found in the \samples folder.
Rick Lipkin