All pastes #150890 Raw Edit

Stuff

public text v1 · immutable
#150890 ·published 2006-08-27 13:08 UTC
rendered paste body
procedure TForm1.Button6Click(Sender: TObject);
var start_ido : string;
    end_ido : string;
    formatum : TFormatSettings;
begin
  formatum.ShortDateFormat := 'HH.mm';
  start_ido:=datetostr(DateTimePicker1.Time,formatum);
  end_ido:=datetostr(DateTimePicker2.Time,formatum);

  Edit2.Text:=start_ido;
  Edit3.Text:=end_ido;

  if AdoQuery1.Active then AdoQuery1.Close;
    AdoQuery1.SQL.Clear;
    AdoQuery1.SQL.Add('SELECT * FROM cardmanager WHERE Ido >= '+QuotedStr(start_ido)+' and Ido <= '+QuotedStr(end_ido));
    AdoQuery1.Open;

end;