me aparece este error al querer recompilar la libreria de fivewin harbour
dbms.prg(36) Error E0030 Syntax error: "parse error at 'CFILE'"
como lo soluciono
error BYNAME una solucion Antonio!!!!!
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Añade estas líneas al comienzo de ese PRG:
Code: Select all
#xtranslate BYNAME <V> [, <VN> ] => ::<V> := <V> [; ::<VN> := <VN> ]
#xtranslate BYNAME <V> DEFAULT <Val> => ::<V> := BYDEFAULT <V>, <Val>
#xtranslate BYNAME <V> IFNONIL => ;
if <V> != NIL ;;
::<V> := <V> ;;
end
#xtranslate BYDEFAULT <V>, <Val> => if( <V> == NIL, <Val>, <V> )