-
Getting the list of users belonging to a group
Read more: Getting the list of users belonging to a groupThere is not a method in lotusccript to get the list of all users belonging to a group, and to complicate matters, groups can contain other groups as members. To solve this problem I wrote getUsersByGroup function that returns the list of users belonging to a group, provided that: the public names.nsf is accessible users…
-
Opening a document in a dialog box
Read more: Opening a document in a dialog boxIf you want to open a document in a dialog box you can use two methods:
-
Debugging the Terminate event in a Form
Read more: Debugging the Terminate event in a FormI discovered that you can not debug the Terminate event of a form with Lotus Notes Designer 8.5.3 and I do not understand why. I’m sure that once you could.
-
Hiding a rich text field
Read more: Hiding a rich text fieldHiding a rich text field with a formula “Hide paragraph if formula is true” does not work as with other fields. In fact the contents of rich text field can retain the same property “Hide paragraph if formula is true” when it is saved even if this property was modified with a notes client designer.…
-
Sending an e-mail from an other user
Read more: Sending an e-mail from an other userIf a user sends an e-mail using an agent, he seems to be the sender or the agent signer seems to be the sender if the agent is scheduled. This is not always the desired behavior, especially in the case of scheduled agents in which the sender of the e-mail seems to be the developer…
-
The method getDocumentByUNID in NotesDatabase class
Read more: The method getDocumentByUNID in NotesDatabase classThe method getDocumentByUNID NotesDatabase class returns the appropriate document for the UniversalUnid passed as argument, but it does not return Nothing if it does not find the document but the error 4091 (lsERR_NOTES_BAD_UNID). Then a code to handle this would be the following: Dim s As New NotesSession Dim db As NotesDatabase Dim doc As…
-
The method UpdateProcessedDoc in NotesSession class
Read more: The method UpdateProcessedDoc in NotesSession classThe method UpdateProcessedDoc in NotesSession class can be used to mark a document as already processed by an agent
-
Accessibility of this site from a mobile
Read more: Accessibility of this site from a mobileI’m checking the accessibility of this site from a mobile phone.According to the site mobiReady, the score is bad.It was difficult to think a better result, having never done any tests until now.I begin to think about it, even if it is not so bad on a Samsung Nexus.
-
Connecting to internet from an Android emulator through a proxy server
Read more: Connecting to internet from an Android emulator through a proxy serverUsually I use linux with squid as a proxy server on the same PC and the Android emulator does not connect to internet returning the error “Web page not available” as in Figure 1.
-
Replace a string in the documents in a Lotus database
Read more: Replace a string in the documents in a Lotus databaseI think it might be useful to replace each occurrence of a string in all the documents or in the selected documents in a Lotus database, especially when you want to replace a user in the fields author/reader. The use of roles or groups should be recommended to set the access to the documents, but…