在我编的程序中要调用另一个程序,我想在调用前先显示一个Panel1(上面显示“请您稍后”),然后在调用那个外部程序。但现在却没显示Panel1,而是直接调用外部程序,我该怎么处理?if ListView1.Selected = nil then Exit;
  suiPanel1.Visible:=true;  <-----------------------没显示出来!
  Int_index:= ListView1.Selected.Index;
  ListView1.Enabled:=false;
  lookfile(zfilepathlist.Strings[int_index]);
  ListView1.Enabled:=true;
  suiPanel1.Visible:=False;end;