Subject Re: [IBO] Best-Methods, Bookmarks in IBO
Author Jason Wharton
> I am changing some BDE code to IBO for bookmarks. The old method was:
>
> if ldmPP.ibqPlans.Bookmark BookmarkValid(lBM) then
> ldmPP.ibqPlans.GotoBookmark(lBM);
> ldmPP.ibqPlans.FreeBookmark(lBM);
>
> the new method is:
>
> ldmPP.ibqPlans.Bookmark := lBM;
>
> Nice reduction in LOC, but am I okay there?

Should be just fine.

Jason