Ver Mensaje Individual
  #4  
Antiguo 01-09-2010
Avatar de Caral
[Caral] Caral is offline
Miembro Premium
 
Registrado: ago 2006
Posts: 7.659
Reputación: 25
Caral Va por buen camino
Hola
En tal caso sigue sobrando un parametro:
Código Delphi [-]
with Fmodulo.QryTemp do
     begin
      sql.Text:= ' update volantes set fecha_oficio = :P_fechaoficio '+
                 ' Where id_volante = :P_identificador ';
      Parameters[0].value:= wfechaoficio;
      Parameters[1].Value:= wfirmado; 
      try
        ExecSQL;
        application.MessageBox('Registro Modificado Exitosamente','',mb_ok + mb_iconinformation);
        exit;
      except
       showmessage('Problemas con Query de Modificacion ['+text+']');
       exit;
      end;
     end;
Saludos
__________________
Siempre Novato

Última edición por Caral fecha: 01-09-2010 a las 23:10:12.
Responder Con Cita