#8548
Support 1a
Participant

    This is a very peculiar message. The applet in question does not contain the text ‘Folder.Object’, so I assume the message is generated by GroupWise. In addition, line 122 contains code that creates a new draft email message in your account via the mailbox object, which is a GroupWise folder.

    If this is the case, the problem may actually lie with your GroupWise account or client. I would suggest you request your system admin to perform maintenance on your account. Alternatively, you might try the applet on another machine.

    I have included below some simple applet source code that creates a new message in your account exactly the same way the reminder applet does:

    Sub Main(Client, GWEvent)
    
      dim NewMsg
      dim MsgRecipient
    
      set NewMsg = GroupWise.Account.MailBox.Messages.Add(4)
          
      MsgRecipient = NewMsg.Recipients.Add(GroupWise.Account.Owner.EmailAddress,,0)      
      NewMsg.BodyText.PlainText = "This is a test"
      NewMsg.FromText = "Test"
      NewMsg.Subject = "Test Message"      
      NewMsg.Priority = 3
      NewMsg.Send
    
    End Sub

    Create a new applet on your machine, then paste this code into the applet and run it. It should cause a new message to appear in your in-box. If there is a problem with your account, you may well see a similiar message appear. If an error does occur, you almost certainly have a problem with your account or client that requires either account maintenance or a client re-install.

    I hope this helps,

    Advansys Support