ITravelInterfaceGeneratePrototype Method |
Namespace: SuperOffice.COM.SuperOfficeDB
GeneratePrototype
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO Dim objTI Set objSO = CreateObject("SuperOffice.Application") If not (objSO is nothing) Then Set objTI = objSO.Database.TravelInterface If objTI.GeneratePrototype Then MsgBox "Travel prototype is successfully generated." Else MsgBox "Travel prototype was not successfully generated." End If Else MsgBox "Could not log in" End If Set objSO = Nothing