A
allforyou
Unregistered / Unconfirmed
GUEST, unregistred user!
使用outlook bar删除当前items bar如何实现?
要求实行类似于
procedure TForm1.ListBox1Click(Sender: TObject);
begin
listbox1.DeleteSelected;
end;
的功能在outlookbar中的实现,我的程序段如下:
procedure TForm2.fcOutlookBar1OutlookList1ItemClick(
OutlookList: TfcCustomOutlookList; Item: TfcOutlookListItem);
begin
fcOutlookBar1OutlookList1.Items.Delete(fcOutlookBar1OutlookList1.Selected.Index);
end;
但运行时报错!!
要求实行类似于
procedure TForm1.ListBox1Click(Sender: TObject);
begin
listbox1.DeleteSelected;
end;
的功能在outlookbar中的实现,我的程序段如下:
procedure TForm2.fcOutlookBar1OutlookList1ItemClick(
OutlookList: TfcCustomOutlookList; Item: TfcOutlookListItem);
begin
fcOutlookBar1OutlookList1.Items.Delete(fcOutlookBar1OutlookList1.Selected.Index);
end;
但运行时报错!!