Amigos, ya postie esto enteriormente, pero nunca con este detalle.
Compilando unos prg con el brmake, em estaba tirando error con algunas funciones, buscando dentro de mis prg, descubro que estas funciones tan definidas entre otras tantas, en esta porcion de codigo.
Lo que no logro interpretar es porque no reconoce los metodos o las clases.
He intentando meter esto en una lib y no andubo, he intentado compilar directamente mis prg sin lib y sigue largando los mismos errores.
Agradeceria ayuda.
#include "Objects.ch"
#include "Colores.ch"
#define SetDft(x,y) (x:=if(x==NIL,y,x))
CLASS DbSavSelect
DATA nSavArea
DATA nIndexOrd
DATA nRecno
METHOD New(cAlias, nOrderIndex)
METHOD Recuperar()
METHOD RecAll()
ENDCLASS
METHOD DbSavSelect::New(cAlias, nOrderIndex)
::nSavArea := Select()
::nIndexOrd := IndexOrd()
::nRecno := Recno()
Select( SetDft( cAlias, Alias() ) )
DbSetOrder( SetDft( nOrderIndex, IndexOrd() ) )
RETURN Self
METHOD DbSavSelect::Recuperar()
Select(::nSavArea)
DbSetOrder(::nIndexOrd)
// DbGoto(::nRecno)
RETURN nil
METHOD DbSavSelect::RecAll()
Select(::nSavArea)
DbSetOrder(::nIndexOrd)
DbGoto(::nRecno)
RETURN nil
Error CLSNEW, CLSADDDATA, etc
Return to “FiveWin para Harbour/xHarbour”
Jump to
- English Forums
- ↳ FiveWin for CA-Clipper
- ↳ FiveWin for Harbour/xHarbour
- ↳ FiveTouch
- ↳ EasyReport, EasyDialog and EasyPreview
- ↳ FiveMac / FivePhone (iPhone, iPad)
- ↳ FiveLinux / FiveDroid (Android)
- ↳ FiveWin for Pocket PC
- ↳ mod_harbour
- Foros en Español
- ↳ FiveWin para CA-Clipper
- ↳ FiveWin para Harbour/xHarbour
- ↳ FiveTouch
- ↳ EasyReport, EasyDialog y EasyPreview
- ↳ FiveMac / FivePhone (iPhone, iPad)
- ↳ FiveLinux / FiveDroid (Android)
- ↳ FiveWin para Pocket PC
- ↳ mod_harbour
- Forum italiani
- ↳ All products support
- Forum Portuguese
- ↳ All products support
- Forum German
- ↳ All products support
- General
- ↳ WhatsNew / Novedades
- ↳ Bugs report & fixes / Informe de errores y arreglos
- ↳ To do - WishList / Por hacer - Peticiones
- ↳ Utilities / Utilidades
- ↳ Off Topic / Otros temas
- Artificial Intelligence
- ↳ TensorFlow and Python examples
- ↳ TensorFlow.dll for Harbour and FWH
- ↳ latest AI news
- ↳ Building TensorFlow.dll
- ↳ AI Introduction (Harbour code and samples)