Click or drag to resize

IProjectMemberComment Property

Comment The Project Member dialog has a textbox called Comments. The comments are also shown as a tool tip if you move the mouse pointer over the paperclip (if shown) on the project member.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
string Comment { get; set; }

Property Value

Type: String
String – a text string representing the comment.
Examples

Comment

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

VB
Dim objSO
Dim projMemb
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    projMemb = ObjSO.Database.GetProjectMember(1)
    if projMemb.comment = "" then
        Msgbox "The project member has nothing written on comments.", vbInformation + vbOKOnly, "SuperCOM"
    else
        MsgBox "Project member comment: " & projMemb.comment, vbInformation + vbOKOnly, "SuperCOM"
    end if
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also