es funktioniert nun
hier der Code:
Delphi-Quellcode:
procedure TForm1.check_filterClick(Sender: TObject);
{*********************
**Variablendefinition*
*********************}
var
von, bis :
string;
begin
{**************************************
**Wenn checkbox filter aktiv markiert**
**************************************}
if check_filter.checked
then
{*********************
**VariablenZuweisung**
*********************}
von := DateToStr(filter_von_time.Date);
bis := DateToStr(filter_bis_time.Date);
{*********************
*** MySQL Kommando ***
*********************}
mycommand2.SQL.Text := '
SELECT * FROM t_pd_spesendetail ' + #10
+ '
WHERE (DAT_datum BETWEEN '+von+'
AND '+bis+'
)';
edit3.text := mycommand2.SQL.Text;
mycommand2.Execute();
end;
danke euch allen für die hilfe