Ver Mensaje Individual
  #7  
Antiguo 15-02-2019
Avatar de lbidi
lbidi lbidi is offline
Miembro
 
Registrado: oct 2003
Ubicación: Montevideo- URUGUAY
Posts: 417
Reputación: 21
lbidi Va por buen camino
Logre hacerlo de esta manera

Código Delphi [-]
    With Qry_ADO do
    begin
        SQL.Clear;
        SQL.Add( 'SELECT * FROM checkinout c ');
        SQL.Add( 'Where Format( c.checktime, "dd/mm/yyyy" ) between ' + QuotedStr( FormatDateTime('dd/mm/yyyy', edt_Desde.Date ) ) );
        SQL.Add( 'and ' + QuotedStr( FormatDateTime('dd/mm/yyyy', edt_Hasta.Date ) ) );
        Open;
    end;

Gracias por las respuestas..
Responder Con Cita