|
<< Click to Display Table of Contents >> Delphi Examples: DbiCloseIndex |
![]() ![]()
|
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;