Forum Replies Created

Viewing 15 replies - 796 through 810 (of 929 total)
  • Author
    Replies
  • in reply to: Access the Windows API #7755
    Support 3
    Participant

      You cannot run any Windows API calls directly from Formativ/VBScript. You have to create your own component/wrapper that will serve as a proxy between your script and the APIs. However, Formativ has exposed some common Windows APIs (i.e. FindWindow, SetForegroundWindow). See the Formativ Language Guide for more details.

      In the meantime, you can find the handle of the message window then set as foreground window. You can also set the focus to a specified control of the message window. Here is an example:

        
        iHandle = Utilities.FindWindow("OFMailView","")
        if (iHandle > 0) then
          utilities.SetForegroundWindow(iHandle)
          utilities.doevents
      
          ' Gives the input focus to a specified Windows control.
          call groupwise.FocusSet(fcsMessage, "")
        end if
      

      Hope this helps.

      Regards,
      Advansys Support

      in reply to: Error When Using “Publish Message List” in GW 6.5 #8913
      Support 3
      Participant

        We have test the “Publish Message List” solution with GroupWise 6.5.6 (01/02/2006), it publish one or more messages to MS Word 2003 (11.5604.5606). We think the problem could be environmental.

        Could you please send us your Formativ Configuration. You can obtain the configuration by selecting Help | About Formativ… from the GroupWise main menu. When the About Formativ dialog appears, go to the Configuration tab and click the button Copy to clipboard. Paste the text into your email (or save it to a plain-text file and include it as an attachment) and send to “support@advansyscorp.com”.

        Could you also let us know:

        • The version of Microsoft Word (Start MS Word – Help – About Microsoft Office Word) you are using.
        • The type of messages you selected when you execute the solution (i.e. mail messages, notes, task, etc) and GroupWise Folder (i.e mailbox, calendar, search folder, etc).

        We look forward to hear from you.

        Regards,
        Advansys Support

        in reply to: Error When Using “Publish Message List” in GW 6.5 #8912
        Support 3
        Participant

          We will take a look at this issue and get back to you soon.

          Regards,
          Advansys Support

          in reply to: DisableCommand #7753
          Support 3
          Participant

            I have test the GroupWise.DisableCommand(66) and GroupWise.DisableCommand(62), its disable the Rules and About dialog on GroupWise client 6.5.6 (01/02/06). Seems like a bug in GW 6.5.2, could you to restart GW client after disable the command. Alternatively, you may need to upgrade the GW client.

            Regards,
            Advansys Support

            in reply to: Is there a way to run archive2go on the archive folder only? #9322
            Support 3
            Participant

              Sorry at this stage you cannot export just the GroupWise native archive. This is certainly on our enhancement list for a future version.

              Regards,
              Advansys Support

              in reply to: Using GroupWise.CloseWindow() to close a message window #7752
              Support 3
              Participant

                Thanks for your feedback.

                Regards,
                Advansys Support

                in reply to: Message Saver 2 silent install – missing .net integration #8911
                Support 3
                Participant

                  quote:


                  Somewhere in this forum I saw someone mention a bug where a silent install of Mssage Saver would not install some components and result in a missing .net error when launching Message Saver from within Groupwise.
                  We seem to have the same problem. Is there a resolution to this?


                  It appears that the GroupWise Client MSI won’t allow the launching of another third party MSI located in the Addons configuration location. We have reported this issue to Novell and waiting for the response. We will post the response from Novell here.

                  Alternatively, you can use Novell ZENworks to distribute Formativ and solutions to large number of workstations. Novell ZENworks is Novell’s premier desktop management solution. ZENworks for Desktops makes it easy to roll out and register Formativ Studio, Creator and Runtime automatically for large numbers of users from a central location. ZENworks also makes it easy to update Formativ whenever new software becomes available. See the “Formativ Studio Users Guide” for more information.

                  NOTE: Installing Message Saver for All Users
                  Reported by a customer, installing Message Saver works fine with the user that installs but does not work if change to a different user.

                  Solution:
                  It appears that the problem is the ALLUSERS variable within our Formativ Framework for .NET 1.0 installer is not defaulting to “all users”, which it should. We are planning to update the installer for the next release. In the mean time, you should be able to use the work-around shown below. Install the products in the following sequence and use the new parameter ALLUSERS=1 when installing the Formativ Framework for .NET 1.0. This parameter will force an “All Users” installation.

                  • formativruntime.exe /s /i-config.txt
                  • advansys-formativ-framework-1.0.msi /q ALLUSERS=1
                  • advansys-message-saver-pack-2.0.exe /s /allusers

                  If desired, you can download the stand-alone Formativ Framework for .NET installer from here: http://www.advansyscorp.com/formativ_support_framework.htm

                  Hope this helps.

                  Regards,
                  Advansys Support

                  [This message was edited by Support 3 on October 26, 2008 at 12:28 PM.]

                  in reply to: Duplicate Messages #7749
                  Support 3
                  Participant

                    This sounds like it might be a bug in Novell’s Object API. We’ll report this as a bug to Novell. We couldn’t say when/if they’ll fix it, though. It always helps getting a bug fixed if other reports are received, so you may want to report it to Novell via the Developernet Support Forum independently from us.

                    Alternatively, you can post GroupWise Object API related questions into the following forum:
                    http://groups.google.com.au/group/novell.devsup.gwobjapi?hl=en

                    Regards,
                    Advansys Support

                    in reply to: Using GroupWise.CloseWindow() to close a message window #7751
                    Support 3
                    Participant

                      Groupwise.CloseWindow() closes the current window. You need to make sure when calling this method, the e-mail message window is the activate the window. Here is a sample code to set the e-mail message as active window:

                        
                        iHandle = Utilities.FindWindow("OFMailView","")
                        if (iHandle > 0) then
                          utilities.SetForegroundWindow(iHandle)
                          GroupWise.CloseWindow()
                        end if
                      

                      Please note, attempting to close GroupWise from a C3PO (i.e. Formativ) either did not work or resulted in unpredictable behavior. See the forum post “How to shut down GroupWise?” for more information.

                      Regards,
                      Advansys Support

                      in reply to: Trash Folder is not Archived #9321
                      Support 3
                      Participant

                        Archive To Go is working as designed. We have received a couple of requests for inclusion of the Trash folder and we intended to include it within the next point release.

                        Please send an email to support@advansyscorp.com, if you are interested to test the new release.

                        Regards,
                        Advansys Support

                        in reply to: Integrating Applets with Rule-based Replies #7735
                        Support 3
                        Participant

                          Thanks for your feedback.

                          Regards,
                          Advansys Support

                          in reply to: Integrating Applets with Rule-based Replies #7743
                          Support 3
                          Participant

                            quote:


                            Now, when a user composes a GroupWise rule, is there not a similar property that returns the rule currently being composed and then a second property that allows you to write to the BodyText of the rule’s Reply action?


                            Unfortunately, there is no Token APIs available to return current composed rule. If you want to edit the rule’s action then you need to rewrite the rule. You may need to use the RuleAddActionReplyWithText token to set the reply text. See the Formativ Language Guide and GroupWise Token API for more information.

                            Please note, you can use ThrowToken method which uses the native GroupWise Token Commander to execute a given token. See the forum post below about the ThrowToken method:
                            http://www.advansyscorp.com/forums/topic/3121058911/

                            Regards,
                            Advansys Support

                            in reply to: Is it possible? #7745
                            Support 3
                            Participant

                              quote:


                              Using a button on the form is it possible to launch a separate form, prompting the user to enter appointment information and post the content of that to a calendar that they have proxy rights to?
                              sed:


                              You can use button click event (Double click a button in the Form Designer) to display another form.

                              Sub btnDlg1Click(Sender)
                                dlg2.showmodal
                              End Sub
                              

                              quote:


                              On this form I would like to also pick the month from a drop down list but store the number to the database for sorting purposes. I looked at listview and was able to successfully set it up using the viewstyle of vslist; however this method takes up a lot of real estate on the form, is there an alternative?


                              Another option is to use DateTimeEdit control then extract the month. Example:
                              msgbox month(dlg1.dateCtl.date)

                              Hope this helps.

                              Regards,
                              Advansys Support

                              in reply to: Performance of creating addressbook entries #7734
                              Support 3
                              Participant

                                This is a known issue and we have reported to Novell few times over the years but haven’t had any response. We also noticed the process to add entries into Address Book (AB) slow dramatically after 250-300 entries.

                                You can place debug trace into your applet to see the performance. We will recommend to place debug trace before & after you access database, add entry into AB, after entry added into AB. See the forum post below to use the debug view:
                                http://www.advansyscorp.com/forums/topic/664107894/

                                Regards,
                                Advansys Support

                                in reply to: Difference between 6.5.4 & 6.5.6 ? #7722
                                Support 3
                                Participant

                                  You can iterate thought System AB entries collection to find the email address. Not very efficient but this is only option available.

                                  Depend on the nature of your application, you can also cache System AB entries information (i.e Name, email address, address, etc) into XML then use the XPath to find data in XML.

                                  Hope this helps.

                                  Regards,
                                  Advansys Support

                                Viewing 15 replies - 796 through 810 (of 929 total)