Ver Mensaje Individual
  #1  
Antiguo 24-05-2012
Avatar de Jere_84
Jere_84 Jere_84 is offline
Miembro
NULL
 
Registrado: sep 2011
Ubicación: Córdoba, Argentina
Posts: 214
Reputación: 0
Jere_84 cantidad desconocida en este momento
GotoBookMark record not found

Este código funcionaba correctamente en versiones de delphi 6, pero al trasladarlo a Delphi 2010 sale el error "ClientDataSet record not found". Alguien sabe cual puede ser el problema.

Código Delphi [-]
    bmReg := GetBookmark;
    try
      sPredAnt := FieldByName( 'Prede' ).AsString;
      if (sPredAnt = 'P') or Locate('Prede', 'P', []) then
      begin
        Edit;
        FieldByName( 'ImagenPrede' ).Assign( TBitmap.Create );
        FieldByName( 'Prede' ).AsString := ' ';
        Post;
      end;
    finally
      GotoBookMark(bmReg); <----Aqui da el error

Slds.
Responder Con Cita