ISelectionSetDefaults Method |
Namespace: SuperOffice.COM.SuperOfficeDB
SetDefaults
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO Dim result Set objSO = CreateObject("SuperOffice.Application") If not (objSO is nothing) Then objSO.CurrentSelection.SetDefaults() msgbox "Take a look at the current selection now, when you click OK the changes will be cancelled." objSO.CurrentSelection.CancelChanges() else MsgBox "Unable to connect to database" end if Set objSO = Nothing