los eerores son "function name is missing" y "command contains unrecognized phrase/keyword"-me podrian decir por que salen estos errores "por fabor"
#INCLUDE consts.h
SET PROCEDURE TO util.prg
* Identification score
LOCAL idscore AS INTEGER
* Identification result
LOCAL ret AS INTEGER
LOCAL ded as Character
idscore = 0
ret = Identify(@idscore)
IF ret = 0 THEN
WriteLog("Error: Fingerprint not found")
RETURN
ENDIF
IF ret > 0 THEN
WriteLog("CLIENTE AGENDADO EN BISICLETAS . ID = " + ALLTRIM(STR(ret)))
PrintBiometricDisplay(.T., GR_DEFAULT_CONTEXT)
ded=right('0000000'+alltrim(str(ret)),7)
USE f:\gimnasio\tablas\GymHrs02
LOCATE FOR EMPTY(&cCliente) AND Fecha = DATE()
IF FOUND()
IF !EMPTY(&cField)
Replace &cField WITH ded
ENDIF
Replace &cCliente WITH ded
Replace &cLlego WITH Thisform.Text1.Value
= MESSAGEBOX("Cliente Agendado", 64, "Aviso")
ELSE
COUNT TO Y FOR Fecha = DATE()
IF Y < Datopvar.NoCamas
APPEND Blank
Replace Fecha WITH DATE()
Replace &cField WITH ded
Replace &cCliente WITH ded
Replace &cLlego WITH Thisform.Text1.Value
TABLEUPDATE(.T.)
*browse
= MESSAGEBOX("Cliente Agendado", 64, "Aviso")
ELSE
= MESSAGEBOX("Todas las camas estan ocupadas", 16, "Aviso")
ENDIF
Endif
ELSE
WriteError(ret)
ENDIF