Ver Mensaje Individual
  #8  
Antiguo 29-03-2011
Lizeth Lizeth is offline
Miembro
 
Registrado: ago 2005
Ubicación: Mexico D.F
Posts: 50
Reputación: 19
Lizeth Va por buen camino
Hola gracias chicos, bueno intente lo que dijo Roman así:
Código Delphi [-]
    SetLength(sHuella, SizeOf(ConsolResult.Template));
    Move(ConsolResult.Template.rgsabound, sHuella[1], SizeOf(ConsolResult.Template));
 Memo1.Text := sHuella;

y lo paso a un memo para ver que hay, mm pero me da simbolitos raros, | así.

No les puedo dar mas datos de la clase en donde se encuentra IConsolidationResult porque no me lo permiten , pero si les puedo poner que tiene y es esto, no tengo manual, pero si ayuda, acontinuación les pongo lo que tengo.

Código Delphi [-]
//Dual OleAutomation Dispatchable
 
IConsolidationResult = interface(IDispatch)
    function Get_Success: Byte; safecall;
    function Get_Template: PSafeArray; safecall;
    function Get_Index: Integer; safecall;
    function Get_Quality: Byte; safecall;
    property Success: Byte read Get_Success;
    property Template: PSafeArray read Get_Template;
    property Index: Integer read Get_Index;
    property Quality: Byte read Get_Quality;
  end;


En la ayuda viene esto:

Index Gets the index of the reference input template

Quality Gets the Quality of the resulting template
Success Gets the result of the consolidation process
Template Gets the consolidated fingerprint template buffer
Responder Con Cita