'STATUS LNPUBLIC FTDeleteIndex(HANDLE hDB);Declare Function FTDeleteIndex Lib "nnotes.dll" (Byval hDB As Long) As Integer 'STATUS LNPUBLIC NSFDbClose( DBHANDLE hDB);Declare Function NSFDbClose Lib "nnotes.dll" (Byval hDB As Long) As Integer 'STATUS LNPUBLIC NSFDbOpen(char far *PathName, DBHANDLE far *rethDB);Declare Function NSFDbOpen Lib "nnotes.dll" (Byval filepath As String, DB As Long) As Integer Dim Bufferstr As StringDim ReturnCodel As LongDim hDBl As Long Dim session As New NotesSession 'Open the databaseReturnCodel = NSFDbOpen(session.CurrentDatabase.FilePath, hDBl)If ReturnCodel <> 0 ThenError 9999, "An error occurred in the main routine calling the API function NSFDbOpen." & Chr$(10) & "The return code was " & Trim$(Str$(ReturnCodel)) & "."Exit SubEnd If 'Delete the indexReturnCodel = FTDeleteIndex(hDBl)If ReturnCodel <> 0 ThenError 9999, "An error occurred in the main routine calling the API function FTDeleteIndex." & Chr$(10) & "The return code was " & Trim$(Str$(ReturnCodel)) & "."Call NSFDbClose(hDBl)Exit SubEnd If 'Close the databaseReturnCodel = NSFDbClose(hDBl)