Hola
Código Delphi
[-]
SQL.Text := 'Select Fecha,grupo,des_cu,debe,haber from costosygastos.db where fecha >= "01/"'+
QuotedStr(edMes.Text)+'"/"'+QuotedStr(edAno.Text);
Aunque yo lo haría así
Código Delphi
[-]
SQL.Text := 'Select Fecha,grupo,des_cu,debe,haber from costosygastos.db where fecha >= '+
QuotedStr('01/'+edMes.Text+'/'+edAno.Text);
Salud OS