error BYNAME una solucion Antonio!!!!!

Post Reply
tomafa
Posts: 111
Joined: Sun Aug 13, 2006 7:28 pm
Location: ....
Contact:

error BYNAME una solucion Antonio!!!!!

Post by tomafa »

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
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

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> )
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply