Hello, I am trying to only list .dbf files in the open file dialogue window but I see all file types. Can anyone tell me what I am doing wrong? Thanks.
var
MyDataFile : string ;
begin
if OpenDialog1.Execute then
begin
OpenDialog1.Filter := '*.dbf' ;
MyDataFile := OpenDialog1.FileName ;
end.
end