Forum Replies Created

Viewing 15 replies - 1 through 15 (of 40 total)
  • Author
    Replies
  • dgerisch
    Participant

      It looks like I mis-spoke. It’s not “some” machines, it’s all of them. I will send configuration files to the support email address.

      dgerisch
      Participant

        Thank you very much. These have answered all my questions.

        dgerisch
        Participant

          I can do a Save As from my library to an external file. Is there a corresponding File, Open operation that I just don’t see? After the ZENworks distribution (and the source code gets stomped on), I’d like to import the saved file back in. The saved version of the source code has the form data encoded in it. Is it reasonable that I can open the saved off source file, copy all to the clipboard, and paste all into the applet in the library, and the form imports as well?

          Thanks!

          dgerisch
          Participant

            OK, thank you. This is the problem. I was trying to distribute the original source code versions. No reason not to, really (well, except that they won’t work); and, since I’m a ZENworks user myself, when the ZENworks guy distributes the encoded version, it’s going to stomp on my source code version.

            in reply to: Dialog box – can I assign hotkeys to buttons? #10201
            dgerisch
            Participant

              Perfect. Thank you very much.

              dgerisch
              Participant

                I am happy to report that I recently got an FTF patch for GroupWise 2014 R2, and it fixed this problem. The build number of the version I got is 123897.

                in reply to: GroupWise 2014 R2 draft appointment send – no recipient #9993
                dgerisch
                Participant

                  Glad to hear it. Smile

                  in reply to: GroupWise 2014 R2 draft appointment send – no recipient #9991
                  dgerisch
                  Participant

                    Thank you very much for the testing and reaching out to Micro Focus.

                    dgerisch
                    Participant

                      Thank you very much. Smile

                      dgerisch
                      Participant

                        This worked great. Thank you.

                        Do you happen to have the format on hand for limiting the search to a date range? Next year, I’ll be asked to post another series of notes, and it would be nice if I can tell that the count in 2016 is either zero (safe to proceed) or greater than that (don’t proceed making duplicates).

                        in reply to: Item category change #9849
                        dgerisch
                        Participant

                          Thank you very much! That works just like it should. Smile

                          Interestingly, one has to close the item view and re-open it to see the change in the Personalize tab.

                          in reply to: Item category change #9847
                          dgerisch
                          Participant

                            Sorry – upon review, I completely missed asking the question I needed to ask.

                            I need to remove a Category assigned to an Item.

                            Set oMsg = Client.ClientState.CommandMessage

                            Works fine:

                            oMsg.Categories.add(aCategory)

                            I have no idea of what the corresponding removal code looks like. The GroupWise developer documentation is pretty opaque about what can be done and how.

                            in reply to: Message toolbar button customization #8212
                            dgerisch
                            Participant

                              Thank you for the information.

                              in reply to: How to link an item to a folder? #8185
                              dgerisch
                              Participant

                                Thank you very much.

                                in reply to: Message view – how can I tell? #7845
                                dgerisch
                                Participant

                                  I eventually solved this using a search on the address book. Maybe not as nice as GroupWise.AddressBookResolveFullName(), but it’s an alternative.

                                  Set oAddressBook = GroupWise.Account.AddressBooks.Item("Novell GroupWise Address Book")
                                  
                                  ' Find out how many items are selected in GroupWise
                                  iCount = Client.ClientState.SelectedMessages.Count
                                  
                                  ' If any are selected, access each one
                                  If iCount > 0 Then
                                  
                                      For x = 1 To iCount
                                  
                                          ' Get the currently selected message
                                          Set iMsg = Client.ClientState.SelectedMessages.Item(x)
                                  
                                          strEmailAddress = iMsg.Sender.EmailAddress
                                          
                                          Set oEntries = nothing
                                  
                                          Set oEntries = oAddressBook.AddressBookEntries.Find("(<E-Mail Address> CONTAINS """ & strEmailAddress & """)")
                                  
                                          iText = ""
                                  
                                          For each oEntry in oEntries
                                  
                                              Set oFields = oEntry.Fields
                                  
                                              For each oField in oFields
                                                  iText = iText & "Name: " & oField.Name & ", Value: " & oField.Value & CRLF
                                                  If oField.Name = "Name" Then
                                                      strDisplayName = oField.Value
                                                  End If
                                              Next
                                  
                                          Next
                                  
                                          If iText = "" then
                                  
                                              ' Send the email by calling the send method
                                              ' (more code goes here)
                                  
                                          Else
                                  
                                              call MsgBox( strDisplayName & " is in GroupWise - you can't tag internal user mail as spam.", 64, CAPTION )
                                  
                                          End If
                                  
                                          set iMsg = nothing
                                  
                                      Next
                                  
                                  End If
                                  
                                Viewing 15 replies - 1 through 15 (of 40 total)