Forum Replies Created
-
AuthorReplies
-
March 19, 2019 at 3:52 am in reply to: Formativ runtime appears to hang on GroupWise client shut down #10556
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.
March 13, 2019 at 12:12 am in reply to: How do I get applets to be active in the GroupWise client without eDirectory? #10555Thank you very much. These have answered all my questions.
March 12, 2019 at 1:31 am in reply to: How do I get applets to be active in the GroupWise client without eDirectory? #10552I 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!
March 12, 2019 at 1:17 am in reply to: How do I get applets to be active in the GroupWise client without eDirectory? #10551OK, 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.
Perfect. Thank you very much.
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.
April 21, 2016 at 5:25 pm in reply to: GroupWise 2014 R2 draft appointment send – no recipient #9993Glad to hear it.
March 31, 2016 at 8:34 am in reply to: GroupWise 2014 R2 draft appointment send – no recipient #9991Thank you very much for the testing and reaching out to Micro Focus.
July 6, 2015 at 5:31 pm in reply to: Filter for Notes isn’t working as I expect. What should I do different? #9980Thank you very much.
July 3, 2015 at 11:50 am in reply to: Filter for Notes isn’t working as I expect. What should I do different? #9978This 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).
Thank you very much! That works just like it should.
Interestingly, one has to close the item view and re-open it to see the change in the Personalize tab.
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.
Thank you for the information.
Thank you very much.
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
-
AuthorReplies