X
xzb_97
Unregistered / Unconfirmed
GUEST, unregistred user!
我想查看磁盘的总容量和使用的情况。
在label.caption里显示drive(3)和driveid(C)的磁盘总容量和使用的容量
procedure infoshow(Atabel:ttabel;drive:integer;driverid:string);(已经在From1的Private中声明了)
begin
Alabel.caption:=inttostr(diskfree(drive)*100 div disksize(drive))+'pecent is free'+#13#10+driveid+'have'+(disksize(3))/1024+'kbytes totally';
end;
在另一个preocedure中调用infoshow(label1,3,c),结果报错 undefined ....'c',就是说没定义'c'!这是怎么回事啊?
在label.caption里显示drive(3)和driveid(C)的磁盘总容量和使用的容量
procedure infoshow(Atabel:ttabel;drive:integer;driverid:string);(已经在From1的Private中声明了)
begin
Alabel.caption:=inttostr(diskfree(drive)*100 div disksize(drive))+'pecent is free'+#13#10+driveid+'have'+(disksize(3))/1024+'kbytes totally';
end;
在另一个preocedure中调用infoshow(label1,3,c),结果报错 undefined ....'c',就是说没定义'c'!这是怎么回事啊?