B
baoling
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.LookFileSize;
var
FF:TSearchrec;
begin
if FindFirst(MyPath1.SelfPath+'CMDB.MDB',faAnyFile,FF)= 0 then
panel7.Caption:='MDB数据库尺寸: '+inttostr(FF.Size)+' 字节';
if FindFirst(MyPath1.SelfPath+'CDBF.DBF',faAnyFile,FF)= 0 then
panel8.Caption:='DBF数据库尺寸: '+inttostr(FF.Size)+' 字节';
findclose(FF);
end;
这个过程调用后,两个数据库增加了数据,再次调用这个过程,显示结果还是原来的数据,为何
请大侠指点
var
FF:TSearchrec;
begin
if FindFirst(MyPath1.SelfPath+'CMDB.MDB',faAnyFile,FF)= 0 then
panel7.Caption:='MDB数据库尺寸: '+inttostr(FF.Size)+' 字节';
if FindFirst(MyPath1.SelfPath+'CDBF.DBF',faAnyFile,FF)= 0 then
panel8.Caption:='DBF数据库尺寸: '+inttostr(FF.Size)+' 字节';
findclose(FF);
end;
这个过程调用后,两个数据库增加了数据,再次调用这个过程,显示结果还是原来的数据,为何
请大侠指点