谁知道的请回复,最好有示例

解决方案 »

  1.   

    TBookList is a collection of books that identify a set of records in a dataset.UnitdbgridsDescriptionUse TBookList to manage a set of books when working with the records in a dataset. Each book identifies a particular record in the dataset, and can be identified by a string.
      

  2.   

    删除这样用
          for i:=0 to DBGrid1.SelectedRows.Count-1 do
          begin
            GotoBookMark(Pointer(DBGrid1.SelectedRows.Items[i]));
            Query1.delete;
          end;
      

  3.   

    var
      MyBookMark: TBook;
    begin
      MyBookMark := Query1.GetBook
    end;用的时候可以用
    Query1.GotoBook(MyBookMark);
      

  4.   

    是不是只有结合DBGrid控件才能发挥Book的威力呢,我用的是listView控件