home *** CD-ROM | disk | FTP | other *** search
- '-------- CONSTANTS FROM ORGANIZER
-
- '--- Values for NoticeType (ORSMSGTYPE)
- ' These are stored in the NoticeType item in the note
- ' These should only be 1 character in length and are not translated
- ' Not all of these are stored on DISK
-
- Const ORS_MSGTYPE_ACCEPT = "A" ' accept meeting request
- Const ORS_MSGTYPE_COUNTERACCEPT = "B"
- Const ORS_MSGTYPE_CANCEL = "C" ' originator cancelled the meeting
- Const ORS_MSGTYPE_DELEGATING = "D" ' delegated (notifies originator)
- Const ORS_MSGTYPE_REFRESHINFO = "E"
- Const ORS_MSGTYPE_COMPLETED = "F" ' completed request (for todo's)
- Const ORS_MSGTYPE_ADDCALENDAR = "G"
- Const ORS_MSGTYPE_INVITE = "I" ' original meeting request send
- Const ORS_MSGTYPE_COUNTERREJECT = "J" ' originator declined counter proposal
- Const ORS_MSGTYPE_DELEGATE = "L" ' delegated (notifies delegate)
- Const ORS_MSGTYPE_CONFIRMATION = "N" ' originator confirmed the meeting
- Const ORS_MSGTYPE_PENCILIN = "P" ' pencil in meeting request
- Const ORS_MSGTYPE_REJECT = "R" ' reject meeting request
- Const ORS_MSGTYPE_STATUSUPDATE = "S" ' originator send status update
- Const ORS_MSGTYPE_COUNTER = "T" ' counter-proposal (propose change)
- Const ORS_MSGTYPE_RESCHEDULE = "U" ' originator updated place or time
- Const ORS_MSGTYPE_WAITING = "W" ' no response
- Const ORS_MSGTYPE_REMOVERES = "Y"
- Const ORS_MSGTYPE_REMOVED = "Z"
- Const ORS_MSGTYPE_STATUSREQUIRED = "2" ' chairperson is requiring invitee to attend
- Const ORS_MSGTYPE_STATUSREMOVED = "5" ' chairperson is removing invitee from list
-
- '--- Values for OrgStatus (ORSATTSTATUS)
- ' These are stored in the note and should not be translated!!!!
- Const ORS_STATUS_REMOVED = "5" ' attendee was removed
-
- '--- Values for OrgState (ORSATTSTATE)
- ' These are stored in the note and should not be translated!!!!
- Const ORS_STATE_ROOM = "5" ' set for a room
- Const ORS_STATE_RESOURCE = "6" ' set for a resource
-
-
- '--- Values for OrdTable
- ' These are stored in the note and should not be translated!!!!
- Const ORS_ITEM_CALENDAR = "C0"
- Const ORS_ITEM_TODO = "T0"
- Const ORS_ITEM_CALLS = "H0"
- Const ORS_ITEM_PLANNER = "P0"
- Const ORS_ITEM_ADDRESS = "D0"
- Const ORS_ITEM_NOTEPAD = "N0"
- Const ORS_ITEM_ANNIVERSARY = "A0"
-
-
- ' Specifies if event chair needs to send event requests to various participants
- Const SO_NONE = 0 ' No requests need to be sent
- Const SO_USERS = 1 ' Send requests to users
- Const SO_ROOMS = 2 ' Send requests to rooms
- Const SO_RESOURCES = 4 ' Send requests to resources
-
-
- ' Flags for cancelling an event
- Const REMOVE_CURRENT = 1 ' Delete the main event
- Const REMOVE_RESPONSES= 2 ' Delete all responses
- Const REMOVE_CALENDAR = 4 ' Remove from the calendar
- Const REMOVE_DELETED = 8 ' User is deleting document manually
-
-
- ' Flags that determine which instances a change to a repeating entry are filtered
- Const REPEAT_CANCEL = -1 ' User cancelled modified a repeating entry
- Const REPEAT_CURRENT = 0 ' User wants to modify current instance only
- Const REPEAT_ALL = 1 ' User wants to modify all instances
- Const REPEAT_PREV = 2 ' User wants to modofy current and all previous instances
- Const REPEAT_FUT = 3 ' User wants to modify current and all future instances
-
-
- ' Options for determining how an event fits in the repeating "world"
- Const CTX_REPEAT_NONE = 0
- Const CTX_REPEAT_MAIN = 1 ' Main document in hierarchy
- Const CTX_REPEAT_INST = 2 ' Child Event document
- Const CTX_REPEAT_MSG = 3 ' Workflow message
-
-
- Const CS_VERSION_45 = 48 ' Entry is from version 4.5
- Const CS_VERSION_50 = 50 ' Entry is from version 5.0
-
- Const CS_SHARED_STRING=1
- Const CS_OWNER_STRING=50
- Const CS_PART_STRING=100
-
- ' Shared Strings
- Const INC_COMMENTS = CS_SHARED_STRING
- Const ENTRY_PAST = CS_SHARED_STRING+1
- Const ENTRY_CONF = CS_SHARED_STRING+2
- Const ALARM_TITLE = CS_SHARED_STRING+3
- Const PAST_TITLE = CS_SHARED_STRING+4
- Const DBLBOOK_TITLE = CS_SHARED_STRING+6
- Const ERR_FREETIME = CS_SHARED_STRING+7
- Const RPTCHANGE_TITLE = CS_SHARED_STRING+8
- Const USER_ACTION_INVALID = CS_SHARED_STRING+9
- Const USER_INVALID_DOCUMENT = CS_SHARED_STRING+10
- Const ERR_CREATE_REPEAT = CS_SHARED_STRING+11
- Const ERR_TITLE = CS_SHARED_STRING+12
- Const REPEAT_CONFLICT_PROMPT = CS_SHARED_STRING+13
- Const REPEAT_CONFLICT_TITLE = CS_SHARED_STRING+14
- Const REPEAT_OPEN_PROMPT = CS_SHARED_STRING+15
- Const REPEAT_OPEN_TITLE = CS_SHARED_STRING+16
- Const ENABLE_OUT_PROMPT = CS_SHARED_STRING+17
- Const ENABLE_OUT_TITLE = CS_SHARED_STRING+18
- Const RESOURCE_BOOKED_PROMPT = CS_SHARED_STRING+19
- Const RESOURCE_BOOKED_TITLE = CS_SHARED_STRING+20
- Const RESOURCE_FREETIME_ERR_PROMPT = CS_SHARED_STRING+21
- Const RESOURCE_FREETIME_ERR_TITLE = CS_SHARED_STRING+22
- Const WEB_GOBACK = CS_SHARED_STRING+23
- Const REPEAT_PASTE_PROMPT = CS_SHARED_STRING+24
- Const REPEAT_PASTE_TITLE=CS_SHARED_STRING+25
-
- ' Owner Strings
- Const ENTRY_TYPE = CS_OWNER_STRING
- Const ENTRY_DTMOD = CS_OWNER_STRING+1
- Const CANC_TITLE = CS_OWNER_STRING+2
- Const RESC_TITLE = CS_OWNER_STRING+3
- Const STS_TITLE = CS_OWNER_STRING+4
- Const DTMOD_TITLE = CS_OWNER_STRING+5
- Const MODTYPE_TITLE = CS_OWNER_STRING+6
- Const CONF_TITLE = CS_OWNER_STRING+7
- Const CTRACPT_TITLE = CS_OWNER_STRING+8
- Const CTRDECL_TITLE = CS_OWNER_STRING+9
- Const REM_PART = CS_OWNER_STRING+10
- Const REM_PART_TITLE = CS_OWNER_STRING+11
- Const RESC_UPD_MSG = CS_OWNER_STRING + 12
- Const REPEAT_TITLE = CS_OWNER_STRING + 13
- Const SEND_INV_MSG = CS_OWNER_STRING + 14
- Const SEND_INVRES_MSG = CS_OWNER_STRING+15
- Const SEND_INV_TITLE = CS_OWNER_STRING+16
- Const NO_SEND_LIST = CS_OWNER_STRING+17
- Const VIEWSTATUS_NOMEMBERS_PROMPT=CS_OWNER_STRING+18
- Const WEB_TABLE_NAME=CS_OWNER_STRING+19
- Const WEB_TABLE_STATUS=CS_OWNER_STRING+20
- Const WEB_TABLE_ROLE=CS_OWNER_STRING+21
-
- ' Participant Strings
- Const RESC_MSG = CS_PART_STRING
- Const CANCEL_MSG = CS_PART_STRING+1
- Const CANCEL_UPD = CS_PART_STRING +2
- Const CANCEL_NOACTN = CS_PART_STRING+3
- Const ERR_SEND_DELE = CS_PART_STRING+4
- Const ERR_BROADCAST = CS_PART_STRING+5
- Const ERR_NO_DELEGATE = CS_PART_STRING+6
- Const ERR_NO_PROPOSE = CS_PART_STRING+7
- Const USER_MUST_ACCEPT=CS_PART_STRING+8
-
- Const ACPT_TITLE = CS_PART_STRING+9
- Const DECL_TITLE = CS_PART_STRING+10
- Const UPD_TITLE = CS_PART_STRING+11
- Const DELE_TITLE = CS_PART_STRING+12
- Const CNTR_TITLE = CS_PART_STRING+13
- Const ADD_TITLE = CS_PART_STRING+14
- Const STATUS_REQUIRED = CS_PART_STRING+15
- Const STATUS_REMOVED = CS_PART_STRING+16
- Const STATUS_TITLE = CS_PART_STRING+17
-
-
- ' MAIL CONSTANTS
-
-
- Const CREATE_MEMO = 1
- Const CREATE_TASK = 2
- Const CREATE_CALENDAR = 3
- Const CREATE_GROUPCALENDAR = 4
-
-
-
- ' Common action defines for mail and C&S
- ' Although it appears that all of these could be OR'd
- ' together, only a subset should be
-
- Const ACTION_NONE = &h00000000& ' No actions are pending
-
- ' These actions control what happens when a document is closed/saved
- ' Used by both mail and C&S
-
- Const ACTION_CLOSE = &h00000001& ' Doc should be closed without saving
- Const ACTION_SAVE = &h00000002& ' Doc should be saved
- Const ACTION_SEND = &h00000004& ' Doc should be sent
- Const ACTION_FILE = &h00000008& ' Doc should be filed in a folder
-
- ' h00000010 - h00000080 are reserved for future actions
-
-
- ' These actions are used by C&S ONLY
- ' These actions can be OR'd with the above ones,
- ' but there should exist only one of these (i.e. you cannot cancel and reschedule at the same time)
-
- Const ACTION_CANCEL = &h00000100& ' Chair is cancelling event
- Const ACTION_RESCHEDULE = &h00000200& ' Chair is rescheduling event
- Const ACTION_COUNTER_REJECT = &h00000400& ' Chair is rejecting proposal
- Const ACTION_COUNTER_ACCEPT = &h00000800& ' Chair is accepting proposal
- Const ACTION_CONFIRM = &h00001000& ' Chair is confirming event
- Const ACTION_REMOVE_PEOPLE = &h00002000& ' Chair is removing participants
- Const ACTION_REMOVE_ROOMS = &h00004000& ' Chair is removing room
- Const ACTION_REMOVE_RESOURCES = &h00008000& ' Chair is removing resource
-
- ' h00002000 - h00008000 are reserved for future actions
-
- Const ACTION_ACCEPT = &h00010000& ' Participant is accepting request
- Const ACTION_DECLINE = &h00020000& ' Participant is declining request
- Const ACTION_DELEGATE = &h00040000& ' Participant is delegating request
- Const ACTION_COUNTER_PROPOSE = &h00080000& ' Participant is counter-proposing
- Const ACTION_OPENRESCHEDULE = &h00100000& ' Participant wants to open reschedule
- Const ACTION_ADDTOCALENDAR = &h00200000& ' Participant is adding event to calendar
- Const ACTION_COMPLETED = &h00400000& ' Participant is completed to do
- Const ACTION_REFRESHINFO = &h00800000& ' Participant wants updated information
-
-
- ' These actions are used by mail ONLY
-
- Const ACTION_MEMOMGR = &h01000000& ' User is creating memo to db manager
- Const ACTION_DRAFT = &h02000000& ' Doc is a draft
- Const ACTION_STATIONERY = &h04000000& ' Doc is stationery
- Const ACTION_RENAME = &h08000000& ' Doc is being renamed
-
- Const Enabled = 1
- Const Disabled = 0
- Const Removed = -1
-
- Const CS_DOC_ALARMS = &h00000001&
- Const CS_DOC_FIRSTPASS = &h00000002&
- Const CS_DOC_FOROWNER = &h00000004&
- Const CS_DOC_TASK = &h00000008&
- Const CS_DOC_ISCOUNTER = &h00000010&
- Const CS_DOC_WEBUSER = &h00000020&
- Const CS_DOC_RESOURCE = &h00000040&
-