Delphi Examples: DbiCloseIndex

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiCloseIndex

Return to chapter overview

Close the specified index for this cursor.

This example uses the following input:

 fDbiCloseIndex(Table2.Handle, 'SYMBOL');

 

procedure fDbiCloseIndex(hTmpCur: hDBICur; IndexName: String);

begin

 Check(DbiCloseIndex(hTmpCur, PChar(IndexName), 0));

end;