Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Dynamsoft Source Anywhere SDK
Message
De
18/11/2007 13:45:57
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Dynamsoft Source Anywhere SDK
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows XP
Database:
MS SQL Server
Divers
Thread ID:
01269789
Message ID:
01269789
Vues:
59
Has anyone ever programmed against the Dynamsoft SourceAnywhere (SAWVSDK.dll) for VSS SDK? I cannot seem to access it no matter what! The do give a VB example as follows:
Dim WithEvents SdkObject As DYNAMSAWVSDKLib.SAWVSDK 

Set SdkObject = new DYNAMSAWVSDKLib.SAWVSDK

Private Sub GetFilesByProject_Click()

    Dim ResultValue As Long
    Dim Canceled As Boolean
    Dim ResultDescription As String
    
    Dim FilesByProject As New SAWVFilesByProject

    'Read all the files under project "$/ServerProjectName" on server. The read operation is limited to this directory.
    ResultValue = SdkObject.GetFilesByProject("$/ServerProjectName", FilesByProject, Canceled, ResultDescription)

    If ResultValue = 0 Then
        Dim Count As Long
        Count = FilesByProject.GetCount()
        Dim Index As Long
        For Index = 0 To Count - 1
            Dim FileName As String
            FilesByProject.Get Index, FileName
        Next
    Else
        MsgBox "Calling 'GetFilesByProject' function fails."
    End If

End Sub
Thanks

Glenn
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform