I'm Making a MiniBrowse for show each record of Lottery
I create an array adata where I save the data of record and I wish insert a scrollbar on bottom of xbrowse to refresh the record

how do i reload a new record from scrollbar and update the xbrowse?
I made this
@ 135,10 SCROLLBAR HORIZONTAL SIZE 100,10 PIXEL OF oDlg ;
RANGE 1 , oDbf:OrdKeyCount() ;
ON UP (oDbf:SKIP(),adata:= Creazione_array(oDbf,oDbf:RECNO()),oBrw:refresh()) ;
ON DOWN (oDbf:SKIP(-1),adata:= Creazione_array(oDbf,oDbf:RECNO()),oBrw:refresh())
but not work
I create an array adata where I save the data of record and I wish insert a scrollbar on bottom of xbrowse to refresh the record
oDbf:=TDatabase():Open( , "Lotto", "DBFCDX", .T. )
oDbf:setorder(1)
oDbf:goBottom()
nRecord:=oDbf:recno()
adata:= Creazione_array(oDbf,nRecord)
how do i reload a new record from scrollbar and update the xbrowse?
I made this
@ 135,10 SCROLLBAR HORIZONTAL SIZE 100,10 PIXEL OF oDlg ;
RANGE 1 , oDbf:OrdKeyCount() ;
ON UP (oDbf:SKIP(),adata:= Creazione_array(oDbf,oDbf:RECNO()),oBrw:refresh()) ;
ON DOWN (oDbf:SKIP(-1),adata:= Creazione_array(oDbf,oDbf:RECNO()),oBrw:refresh())
but not work
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
