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

xstorage_new

[This is preliminary documentation and subject to change.]

Creates XStorage in memory
Status:

Ready

Visual Basic Syntax

Private Declare Function xstorage_new
Lib "xmllab_dll.dll"

()
As Long

Parameters:

Example

The following Microsoft® Visual Basic® example creates new instance of XStorage in memory

Private Sub Initialize_Click()
Dim Res As Long
Res = 1
Dim Result As Long
Dim XSTORAGE_STAT As String
XSTORAGE_STAT = String(255, " ")
Result = xstorage_status(XSTORAGE_STAT)
If Result <> 0 Then
loaded_documents.Clear
Res = xstorage_new
Else
loaded_filename.Caption = "XStorage already exist. Close it first"
End If
If Res = 0 Then
loaded_filename.Caption = "XStorage has been initialized"
Else
loaded_filename.Caption = "XStorage Failed to initialize"
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.