Estimados
Estoy trabajando con 2 PRG, uno MAIN donde coloco el siguiente codigo
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oBar, oBtn
Set DATE TO FRENCH
SET CENTURY ON
Set EPOCH TO 2000
SET DELETED OFF
SET _3DLOOK ON
REQUEST DBFCDX
RddSetDefault("DBFCDX")
Y en el otro trato de abrir una ventana con un Browse pero este no trae los registros de la DBF
#include "fivewin.ch"
#include "xbrowse.ch"
MEMVAR oWndPrinc
STATIC CODBCO, NOMBCO, CTABCO, CTACTA, GRA, NREG, oDlg, oBrw, oCol, cCODANT, oRpt
STATIC TNUEVO := .T.
STATIC LVAN := .F.
FUNCTION BANCOS()
LOCAL oWndBCO, cTitle, oFont, oBar, oMeter, oText, cAlias, oBrw
LOCAL UBI:= "DATA\"
LOCAL cVIA := "DBFCDX"
IF SELECT("BANCO")>0
BANCO->(DBCLOSEAREA())
ENDIF
IF SELECT("BANCO")=0
DBUSEAREA(.T.,cVia,UBI+"BANCO","BANCO",.T.)
ENDIF
BANCO->(ORDSETFOCUS(1))
DEFINE WINDOW oWndBCO MDICHILD OF oWndPrinc ;
oBrw := TXBrowse():New( oWndBCO )
oBrw:cAlias := cAlias
oBrw:SetRDD()
oBrw:CreateFromCode()
oWndBCO:SetControl(oBrw)
ACTIVATE WINDOW oWndBCO ;
ON INIT oBrw:SetFocus()
Ambos cargan bien, el problema es que no me muestra nungun registro del DBF y este tiene cargado varios alli.
Agradezco cualquier aporte