When I search a record in a form he doesnt find a record when i dont type a capital letter. Is their any property or function that i can use so i can search whatever I like, even I type it with capitals or without them.
example: when i search for test he doesnt find the record with Test
0
Comments
i dont find it. this is my code
IF gemeenteschool <> '' THEN BEGIN
RESET;
SETCURRENTKEY(Gemeente);
SETRANGE(Gemeente,gemeenteschool);
CurrForm.UPDATE(FALSE);
END
SETRANGE will only look for literal values, SETFILTER allows you to use wildcards and other filter characters.
Here is some info from the online help for SETFILTER
thank you