Board index » delphi » BookmarkList

BookmarkList

Do you have to iterate through a dataset to find the bookmarks in a
bookmarklist or can you go directely to them?

Thanks

Christophe.

 

Re:BookmarkList


Have a look at the TBookmarkList object, this has all the functions you
probably need.

Tom.

Re:BookmarkList


On Thu, 2 Sep 1999 18:35:40 +0200, "Christophe Van Hecke"

Quote
<rena...@planetinternet.be> wrote:
>Do you have to iterate through a dataset to find the bookmarks in a
>bookmarklist or can you go directely to them?

You can go directly to the record using the bookmark; something like
this:
  // traverse all bookmarks
  for i := 0 to BMList.Count - 1 do
     Table1.Bookmark := BMList[i];

Jan

Re:BookmarkList


Thanks Jan.

Christophe.
Jan Sprengers heeft geschreven in bericht
<37cec344.101048...@forums.inprise.com>...

Quote
>On Thu, 2 Sep 1999 18:35:40 +0200, "Christophe Van Hecke"
><rena...@planetinternet.be> wrote:

>>Do you have to iterate through a dataset to find the bookmarks in a
>>bookmarklist or can you go directely to them?

>You can go directly to the record using the bookmark; something like
>this:
>  // traverse all bookmarks
>  for i := 0 to BMList.Count - 1 do
>     Table1.Bookmark := BMList[i];

>Jan

Other Threads