Estimados:
Cuando tengo una consulta Dolphin ordenan por un campo numerico y presiono una letra, el programa deja de responder. Esto no me pasaba con la misma situacion en la version 11 de FW. Alguna pista?
Talvez, usted esté usando un ERRSYSW.PRG de una version antigua. Se si, cambia el ERRSYSW.PRG para el nuevo de la nueva version de FWHX.
Comprueba si se crea un fichero hb_out.log
#include "fivewin.ch"
#include "tdolphin.ch"
REQUEST HB_LANG_ES
REQUEST HB_CODEPAGE_ESWIN
static oCn, oServer
static cHost := "localhost", cUser := "root", cPwd := "cesar", cDB := "test"
static cCollate := "utf8_spanish2_ci"
//----------------------------------------------------------------------------//
function Main()
HB_CDPSELECT("ESWIN")
HB_LangSelect( "ES" )
Dolphin_test()
return nil
//----------------------------------------------------------------------------//
function Dolphin_test()
local oQry
CONNECT oServer HOST cHost USER cUser PASSWORD cPwd DATABASE cDB
oQry := oServer:Query( "select f.nombre as nomfam, r.* from rubros r left join familias f on f.codigo = r.familia order by r.nombre" )
XBROWSER oQry TITLE "Dolphin " + cCollate AUTOSORT
return nil
//----------------------------------------------------------------------------//
function DlpSeek
local oCn, oQry
CONNECT oCn HOST cHost USER cUser PASSWORD cPw DATABASE cDb
oQry := oCn:Query( "SELECT * FROM CUSTOMER" )
XBROWSER oQry AUTOSORT
oQry:End()
oCn:End()
return nil
Return to FiveWin para Harbour/xHarbour
Users browsing this forum: Google [Bot] and 31 guests