E
everyone
Unregistered / Unconfirmed
GUEST, unregistred user!
下列几行程序是我以前编写的,功能是执行文件删除,
近日对此程序增加了一些功能 ,再执行就不行了,不知为何,请指教。
(在这期间,可能改过 delphi 的 option 选项,可能有关。)
程序如下:(在右键执行)
procedure TForm1.Delse
lectedFile1Click(Sender: TObject);
var i:integer;
begin
if filelistbox1.FileName<>'' then
begin
i:=filelistbox1.ItemIndex;
DeleteFile(filelistbox1.FileName);
if i>0 then
i:=i-1;
filelistbox1.ItemIndex:=i;
FileListBox1.Update;
end;
end;
近日对此程序增加了一些功能 ,再执行就不行了,不知为何,请指教。
(在这期间,可能改过 delphi 的 option 选项,可能有关。)
程序如下:(在右键执行)
procedure TForm1.Delse
lectedFile1Click(Sender: TObject);
var i:integer;
begin
if filelistbox1.FileName<>'' then
begin
i:=filelistbox1.ItemIndex;
DeleteFile(filelistbox1.FileName);
if i>0 then
i:=i-1;
filelistbox1.ItemIndex:=i;
FileListBox1.Update;
end;
end;