• Creator
    Topic
  • #4310
    lp_irovetz
    Participant

      Hi Advansys team,

      How could i generate a popup menu on a document like we could do it with a message

      My goal is to create a popup and with it, the user could send a message with the document selected
      – Select a doc
      – Right Click, select the applet
      – Generate a mail with the document

      It could be useful when user have query document folder and want to quickly send one of them.

      Thanks for you help

      L.P. Irovetz
      ARCANE GroupWare

    • Author
      Replies
    • #7779
      Support 3
      Participant

        It appears that we don’t provide any popup menu integrations for the document message type. We haven’t had any request about this integration. I will add this request into our enhancement database for future release. In the meantime, you can use the GroupWise toolbar or run menu integration. The user will need to select a document then press a GroupWise toolbar icon to execute the applet.

        quote:


        My goal is to create a popup and with it, the user could send a message with the document selected


        I don’t think you can add a message type attachment using Token API. You probably need to use the Object and Token API to add an existing document into a message. Here is some sample code:

          
          set oMessage = Client.clientstate.commandmessage
        
          ' Create the message using Object API
          set oDraftMessage = groupwise.account.workfolder.messages.add("GW.MESSAGE.MAIL", fgwDraft)
          utilities.doevents
        
          ' Add the selected message as an attachment (Object API)
          call oDraftMessage.attachments.add(oMessage, "")
          utilities.doevents
        
          ' Open the draft message (Token API)
          call groupwise.itemopen(oDraftMessage.messageid, "")
          utilities.doevents
        
          set oMessage = nothing
          set oDraftMessage = nothing
        

        Hope this helps.

        Regards,
        Advansys Support

        #7780
        lp_irovetz
        Participant

          Thanks for your answer.

          It could be ‘user friendly’ using a pop-up but if we coudn’t do it ! Frown

          No problems to create a message with a document.
          I encount a difficulty with document.reference
          see http://www.advansyscorp.com/forums/topic/1461087531/

          You said
          >> I will add this request into our enhancement database for future release

          When, do you think, Advansys plan to publish a futur release ? A major one not bug catcher Wink

          Sure, we are many waiting and dreaming to an another realease of your fabulous product Big Grin Big Grin Big Grin

          Thanks

          L.P. Irovetz
          ARCANE GroupWare

          #7778
          Support 2
          Moderator

            We are always looking at new ways to extend Formativ. New functions will be incorporated via extension of our Formativ Framework for .NET 1.0, which is used in Message Saver 2.0 and Archive To Go.

            With a product as broad as Formativ, to help ensure that Formativ remains compatible and that the GroupWise APIs are not broken, significant resources are required to test beta GroupWise releases, in particular for new major versions. These efforts must take precedence over new feature development.

            We would welcome your feedback on features you would like to see in future Formativ versions. Please send them to support@advansyscorp.com.

            Regards,

            Advansys Support

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