Forum Replies Created

Viewing 15 replies - 346 through 360 (of 929 total)
  • Author
    Replies
  • in reply to: Semicolon in the subject #9028
    Support 3
    Participant

      Thanks for the feedback. If you have any further questions, please do not hesitate to contact us.

      Regards,
      Advansys Support

      in reply to: BUG: Retreiving the Subject of CurrentItem #8025
      Support 3
      Participant

        Could you explain the objective of your solution so that we may be able to provide alternative suggestions.

        Looking at your code to create clone message of the original. You can use the Message.Clone() to create a copy of the original message. See below the Object API comments about the Clone() method.

        quote:


        Message Clone()
        Makes an independent copy of this message and returns it as a new draft message. The new message is contained in the same folders as the original.


        Sample code to use the clone method…

          
          set oMsg = Client.clientstate.commandmessage
          set oClonedMsg = oMsg.clone
          msgbox oClonedMsg.subject
        

        Regards,
        Advansys Support

        Support 3
        Participant

          Could you please provide more information or steps to re-produce.

          Are you referring to any solution or GroupWise client behaviour? GroupWise 7.0.3 is available and we always recommend to upgrade the client to the latest point release.

          Regards,
          Advansys Support

          in reply to: How to get signature text? #6915
          Support 3
          Participant

            Sorry, we haven’t heard any update about the request. We will need to take a look whether any new APIs added to Bonsai (GroupWise 8 onwards).

            In the meantime, if it helps, you can enable/disable the GroupWise signature using the PrefSignature token.

            call groupwise.throwtoken("PrefSignature(0;0)", iReturnValue)

            Regards,
            Advansys Support

            in reply to: BUG: Retreiving the Subject of CurrentItem #8024
            Support 3
            Participant

              Does the message view is opened when you save the message and send? If the message view not opened then GroupWise will not add the default signature (if defined).

              In other words, if you create and send message through Object API (No User interface) then the default GroupWise signature will not be added.

              If we mis-understood your enquiry, please provide more information and steps to re-produce.

              Regards,
              Advansys Support

              in reply to: Condition of Use issue #8437
              Support 3
              Participant

                – Can you make sure the ‘ADV_Terms.txt’ file exists in Formativ Data folder, usually “C:Documents and SettingsUSER-NAMELocal SettingsApplication DataAdvansysFormativ1.0Data” folder?
                – Make sure the applet installed properly? Does the applet exists to the Formativ Applets folder, usually, “d:Documents and SettingsUSER-NAMEMy DocumentsAdvansysFormativApplets”?
                – Does the flexalock or open source version installed? See the applet type by checking the name (“Conditions of Use.vbf” or Conditions of Use_flexalock.vbf). Btw, you can not run the open source version in Formativ Runtime.

                Regards,
                Advansys Support

                in reply to: DateTimePicker #8071
                Support 3
                Participant

                  You can use the FormatDateTime() function to return the date or time expression. See the “Visual Basic Scripting” guide for more information.

                  msgbox FormatDateTime(Maindlg.DateTimePicker.date, vbGeneralDate)   
                  

                  Regards,
                  Advansys Support

                  in reply to: DateTimePicker #8064
                  Support 3
                  Participant

                    Please see the Developers Guide for more information and sample code. The following sample code lets you to send message.

                      
                          Dim objDraft  
                          Dim objEmail   
                          Dim objRecipient  
                       
                          ' Create a draft email message  
                          Set objDraft = GroupWise.Account.workfolder.Messages.Add(4)  
                     
                          ' Add a single recipient - ourself  
                           objRecipient = objDraft.Recipients.Add(objDraft.Sender.EmailAddress,,0)   
                     
                          ' Add some properties  
                          objDraft.Subject = "This was created using Formativ"  
                          objDraft.BodyText.PlainText = "This is the body text of the email message"  
                     
                          ' Send the email by calling the send method  
                          Set objEmail = objDraft.Send  
                     
                          ' Display the MessageID  
                          MsgBox(objEmail.MessageID)   
                    

                    Regards,
                    Advansys Support

                    in reply to: MIME encoding … #8075
                    Support 3
                    Participant

                      We are not sure what you mean by the “x-classification custom header”, could you please provide more information. Do you set the classification using the message “Send Options”?

                      Currently in GroupWise, we don’t think its possible to add classification to the message header. However, Novell has added the x-field support in Bonsai (GroupWise 8 onwards) which can be use to add the classification. The value of a x-field is just the IMAP header string.

                      Just a thought, when you send the classification messages in GroupWise, you can change the mime encoding to ISO. See the PrefAdvanced token for more information.

                      Regards,
                      Advansys Support

                      in reply to: Semicolon in the subject #9027
                      Support 3
                      Participant

                        Our engineers has found a bug in the GroupWise ItemSetText() token which insert the semicolon character.

                        Engineers has placed a work-around to the solution. You can download the updated solution “2.0.27” from here: http://beta.advansyscorp.com/Stationery_Flexalock.zip

                        You will need to unzip the file then save the Applet to the default Formativ applets folder, usually “c:Documents and SettingsUSER-NAMEMy DocumentsAdvansysFormativApplets”.

                        Hope this helps. Please let us know how you go.

                        Regards,
                        Advansys Support

                        in reply to: Object reference not set to an instance of an object #9574
                        Support 3
                        Participant

                          Which version of the Archive To Go you are running (Press the About button from the main dialog)? Please see below some suggestions from the engineers:

                          • Have you tried doing a thorough GWCheck on these personal archives? We recommend running GWCheck on any account prior to archiving, but please be aware that we do receive a significant number of problem reports about personal archives. You may find that it helps to reboot the machine before running Archive To Go, especially if the machine has been running for two or more days.
                          • Are there any folders in this account which contain 4,960 or more items? If so, could you try splitting them into smaller folders, Since Creator fails to access the first folder, you could start by splitting only one large folder to see whether that makes a difference. You could also try changing the order of one or two folders (to force a change to the personal archive database). Then try again to archive this account.

                          Hope this helps. Please let us know how you go.

                          Regards,
                          Advansys Support

                          in reply to: Semicolon in the subject #9026
                          Support 3
                          Participant

                            Sorry, we are unable to re-produce the behaviour.

                            Are you using our Stationery solution?

                            Which version of the GroupWise client you are running (see Help – About GroupWise)? If you are not running the latest point release then we will recommend to upgrade the client to the latest point release.

                            Regards,
                            Advansys Support

                            in reply to: DateTimePicker #8063
                            Support 3
                            Participant

                              Thanks for your feedback.

                              Regards,
                              Advansys Support

                              in reply to: GroupWise Account Name in Apllet Form #8062
                              Support 3
                              Participant

                                You will need to add the DateTimePicker to your form. Open Form Designer, select Win32 tab then drop DateTimePicker to your form.

                                We will recommend you to take a look at the Formativ Example applets. The example applets below represent a cross section of the type of solutions that can be written using Formativ applets. Formativ Creator and Studio users are free to use these applets and modify them as required. You can download the Formativ Example Applets Pack installer from the Formativ Download page:
                                http://www.advansyscorp.com/formativ_example_applets.htm

                                Regards,
                                Advansys Support

                                in reply to: Trusted App dll #9022
                                Support 3
                                Participant

                                  Our initial test shows the Enterprise Proxy solution works fine in GroupWise 8.

                                  Regards,
                                  Advansys Support

                                Viewing 15 replies - 346 through 360 (of 929 total)