Ver Mensaje Individual
  #3  
Antiguo 05-07-2014
maxi915 maxi915 is offline
Miembro
NULL
 
Registrado: jul 2011
Posts: 63
Reputación: 13
maxi915 Va por buen camino
me tirar error de parametro mal definido....

Código Delphi [-]
procedure siguienteRegistro(queryTurnoCliente:TADOQuery; var id_turno:Integer);
begin
 With queryTurnoCliente do
    begin
      SQl.Clear;
      SQL.Add('select top 1 id from turnoCliente where id_turno> :Id_turno order by id_turnoCliente');
      Open;
end;
end;
Responder Con Cita