I am working on a project in delphi xe6 and ADO and MS ACCESS components as a base of tados.
When I write a letter in edit1 for example the letter 'a' I see this error "incorrect arguments, outside the allowed range or in conflict with others". The relevant code is this:
DataSource1.DataSet.Close;
DataSource1.DataSet.Filter:= 'nombre like' + quotedstr(Edit1.Text + '%');
DataSource1.DataSet.Open;
DataSource1.DataSet.Filtered := True;