• Creator
    Topic
  • #3953
    Anonymous

      I am attempting to customise the sample applet that publishes messages to word.

      I would like to export the GW 6.5 Category field. (not the task category) I also would like to get the completed date and or status.

      Are there equivilant statements to:
      Selection.TypeText(Msg.TaskPriority&” “)
      To get this data out of GW?

      Later I will want to sellect tasks by their completed status. Right now I would be happy just to be able to print out the info.

    • Author
      Replies
    • #6693
      Support 1a
      Participant

        The various properties you can access in a native GroupWise task object are documented by Novell in the Object API. I don’t think they actually expose the completed date – just the completion status.

        The new GroupWise 6.5 categories can also be accessed via the Object API. Note on the link above the Task object (as well as Mail, Notes, Appointments etc) all have a Categories() property. The Categories property provides a Categories collection. You use this collection to access the categories a message has been assigned to.

        For example, given a task object, you coulds access the first category name by doing something like (untested code follows):

        Msg.Categories.Item(1).Name

        I hope this helps.

        Advansys Support

      Viewing 1 replies (of 1 total)
      • You must be logged in to reply to this topic.