程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> TListView組件使用方法

TListView組件使用方法

編輯:Delphi
引用CommCtrl單元 procedure TForm1.Button1Click(Sender: TObject); begin    ListView_DeleteColumn(MyListVIEw.Handle, i);//i是要刪除的列的序號,從0開始 end; 用LISTVIEW顯示表中的信息:
  procedure viewchange(listv:tlistvIEw;table:tcustomadodataset;var i:integer);
   begin
         tlistview(listv).Items.BeginUpdate;   {listv:listvIEw名}
          try
            tlistvIEw(listv).Items.Clear;
            with table do         {table or query名}
             begin
              active:=true;
              first;
              while not eof do
               begin
                listitem:=tlistvIEw(listv).Items.add;
                listitem.Caption:=trim(table.fIElds[i].asstring);
    //            listitem.ImageIndex:=8;
               next;
               end;
          end;
          finally
          tlistvIEw(listv).Items.EndUpdate;
        end;
   end;
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved