Copyright ® (1997-2003) EDMGROUP Pty Ltd - XML Database - XSTORAGE Reference

xstorage_delete

[This is preliminary documentation and subject to change.]

Deletes XStorage from memory
Status:

Ready

Visual Basic Syntax

Private Declare Function xstorage_delete
Lib "xmllab_dll.dll"

()
As Long

 

Example

The following Microsoft® Visual Basic® example removes XStorage from memory

Private Sub Delete_XStorage_Click(Index As Integer)
Dim Result As Long
Dim XSTORAGE_STAT As String
XSTORAGE_STAT = String(255, " ")
Result = xstorage_status(XSTORAGE_STAT)
If Result = 0 Then
If XSTORAGE_STAT = "memory" Then
Call xstorage_delete
loaded_documents.Clear
loaded_filename.Caption = "XStorage closed "
Else
MsgBox "Illegal call. Can't delete XStorage file " & XSTORAGE_STAT
End If
Else
loaded_filename.Caption = "XStorage not initialized"
End If

End Sub
[C/C++]

C/C++ Syntax

   

Under development

 

C/C++ Return Values

C Sample

Under development

 

Remarks

 

See Also

 

  Contact Us   |   |  

 © 1997-2003 EDMGROUP (Australia) Pty Ltd. All rights reserved.