domino-designer-eclipse

how to save form values to DB in domino designer by Lotus Script

心已入冬 提交于 2019-12-08 03:30:52
问题 I am new to Domino designer and lotus script, following my first question 1) How can I save form values to DB 2)How can I view DB( like MS access) 3) How to create view to retrieve values from DB Googled for it but found a link to save to db solution. I tried Sub Click(Source As Button) Dim myText As String Dim workspace As New NotesUIWorkspace Dim uidoc As NotesUIDocument Dim doc As NotesDocument Dim enteredText As String Dim session As New NotesSession Dim db As NotesDatabase Set db =

@ReplaceSubstring doesn't display value as expected

为君一笑 提交于 2019-12-02 14:23:22
问题 I have this formula in one of the columns in my view in Lotus notes database. However, it does not change the value of the field "EmployeeName" in the view and still displays the original name. Example: Original value : Franco Martínez, José Ramó Expected output : Franco Martinez, Jose Ramo value1:="i"; value2:="e"; value3:="o"; optionList := value1:value2:value3; aliasList := "í":"é":"ó"; @ReplaceSubstring(@Text(EmployeeName); aliasList; optionList) 回答1: As the formula is absolutely correct,

@ReplaceSubstring doesn't display value as expected

自作多情 提交于 2019-12-02 09:16:34
I have this formula in one of the columns in my view in Lotus notes database. However, it does not change the value of the field "EmployeeName" in the view and still displays the original name. Example: Original value : Franco Martínez, José Ramó Expected output : Franco Martinez, Jose Ramo value1:="i"; value2:="e"; value3:="o"; optionList := value1:value2:value3; aliasList := "í":"é":"ó"; @ReplaceSubstring(@Text(EmployeeName); aliasList; optionList) As the formula is absolutely correct, the issue has to be somewhere else. You already checked, that the field is summary, so this cannot be the