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...