Click or drag to resize

ISelectionChanged Property

has record been changed since read? If the selection has been modified since it was loaded, this will return false

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
bool Changed { get; }

Property Value

Type: Boolean

Boolean

False the selection has been modified since it was loaded.

True the selection has never been modified.

Implements

IModelBaseChanged
Examples

Changed

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
Dim objSO
dim result
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    result = objSO.CurrentSelection.Changed
    if result = false then
        MsgBox "Current selection has been modified since it was loaded ", vbInformation + vbOKOnly, "SuperCOM"          
    else
        msgbox "The current selection has NOT been modified since it was loaded.", vbInformation + vbOKOnly, "SuperCOM"   
    end if
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also