Click or drag to resize

IDatabaseNotepadPages Property

Number of notepad pages for the current user Notepad is the small notepad that is accessed by CTRL + click on the Note in the taskbar. The notepad is a personal notebook, and is not connected to any contact or contact person. Notepad is the small notepad that is accessed by CTRL + click on the Note in taskbar. The notepad is a personal notebook, and is not connected to any contact or contact person.

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

Property Value

Type: Int32
String – text on the wanted notepad page Long – the number of notepadpages.
Examples

Get the number of notepad pages for current user

VB
dim objso
dim i
dim a
set objso =  CreateObject("superoffice.application")
If not (objSO is nothing) Then
    'returns the number of notepadpages that belongs  to the currently logged in associate
    msgbox "number of notepadpages: " &  objso.database.notepadpages
    'returns the number of notepadpages that belongs  to the currently logged in associate
    a=objso.database.notepadpages

    for  i=1 to a
        msgbox "text on page " & i & " = " &  objso.database.notepadpage(i)
    next
else
    msgbox "unable to connect to database"
end if
set objso = nothing

Get the number of notepad pages for current user

VB
dim objso
dim i
dim a
set objso =  CreateObject("superoffice.application")
If not (objSO is nothing) Then
    'returns the number of notepadpages that belongs  to the currently logged in associate
    msgbox "number of notepadpages: " &  objso.database.notepadpages
    'returns the number of notepadpages that belongs  to the currently logged in associate
    a=objso.database.notepadpages

    for  i=1 to a
        msgbox "text on page " & i & " = " &  objso.database.notepadpage(i)
    next
else
    msgbox "unable to connect to database"
end if
set objso = nothing

See Also