Ver Mensaje Individual
  #5  
Antiguo 26-04-2010
Willo Willo is offline
Miembro
 
Registrado: jun 2006
Posts: 116
Reputación: 21
Willo Va por buen camino
Hola a todos;

trabajando con el archivo XSD finalmente pude evitar los identificadores duplicados;

pero ahora al compilar mi aplicacion con la unidad creada por el XMLdatabinding me da los siguientes errores:

Undeclared Identifier: ItemTag
Undeclared Identifier: ItemInterface
Código:
procedure TXMLIC2DepositoEnEfectivo.AfterConstruction;
begin
  RegisterChildNode('Cuenta', TXMLTCuenta);
  ItemTag := 'Cuenta';
  ItemInterface := IXMLTCuenta;
  inherited;
end;
Undeclared Identifier: List
Código:
function TXMLIC2DepositoEnEfectivo.Get_Cuenta(Index: Integer): IXMLTCuenta;
begin
  Result := List[Index] as IXMLTCuenta;
end;

Alguien puede ayudarme a corregirlos?

Gracias de antemano pot su ayuda...
Responder Con Cita